Welcome to Kerala Project Center.
Joystick or app-based robot control works but feels indirect — tilting your hand to steer a robot is a more intuitive, natural interface, and building it requires real-time motion sensing and wireless data transmission.
This project mounts an MPU6050 accelerometer/gyroscope on a hand-worn glove or controller; tilting the hand forward, backward, left, or right generates motion data that a transmitter sends wirelessly to the robot, which interprets the tilt pattern as a movement command.
// Simplified tilt-to-command classification - Arduino + MPU6050 #include#include MPU6050 mpu; void setup() { Wire.begin(); mpu.initialize(); Serial.begin(9600); // to RF/Bluetooth transmitter } void loop() { int16_t ax, ay, az; mpu.getAcceleration(&ax, &ay, &az); char command = 'S'; // stop by default if (ay > 8000) command = 'F'; // tilt forward else if (ay < -8000) command = 'B'; // tilt backward else if (ax > 8000) command = 'R'; // tilt right else if (ax < -8000) command = 'L'; // tilt left Serial.println(command); // send to robot delay(100); }
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080