Track your movement and challenge friends with our sleek micro:bit-powered wearables
Friendly Competition Made Simple
Track your movement, challenge friends, and stay motivated with our innovative wearable system
Compete with up to 5 friends simultaneously. See everyone's scores in real-time on your watch display.
Powered by efficient 3V coin cell batteries that last for months. Sleek design with adjustable straps for all-day comfort.
Built on the reliable micro:bit platform with custom firmware for accurate movement tracking.
Simple Setup, Instant Competition
Get started with MoveMate in just a few easy steps
Strap on your lightweight MoveMate watch. The adjustable band ensures a comfortable fit for all wrist sizes.
Press the sync button to connect with friends' devices. The central counter will recognize all nearby MoveMate watches.
Your watch tracks all significant movement. Walk, run, dance - any activity counts! The more you move, the higher your score.
How It Works Under the Hood
A technical breakdown of our BBC micro:bit powered system
MoveMate uses three BBC micro:bit devices communicating via radio:
// Sample micro:bit movement tracking code
const movementThreshold = 150; // Sensitivity
let score = 0;
// Detect significant movement
input.onGesture(Gesture.Shake, function() {
let accel = input.acceleration(Dimension.Strength);
if (accel > movementThreshold) {
score += Math.idiv(accel, 10);
radio.sendValue("score", score);
}
});
Your Personal Movement Tracker
Powered by BBC micro:bit, our watch tracks every move you make
Advanced accelerometer tracks your movements with precision, converting physical activity into points.
Instantly transmits your movement data to the central counter using radio communication.
Efficient power management ensures weeks of continuous use on a single battery.
The LED display shows your current movement points and syncs with the counter.
The Minds Behind MoveMate
Created by three passionate developers during a collaboration between Perse School and SST
Chief Technology Officer
Leading the technical development and hardware optimization of MoveMate.
Chief Marketing Officer
Driving the marketing strategy and brand development for MoveMate.
Chief Design Officer
Creating the user experience and design language of MoveMate.