Bluetooth robot control

2.8
53 reviews
10K+
Downloads
Content rating
Everyone
Screenshot image
Screenshot image
Screenshot image

About this app

Remote control for bluetooth robots and cars. Developed by RobotClass.

HOW IT WORKS
In "Continuous command flow" mode the programm will send via bluetooth a continuous flow of characters while the user presses the button. In another mode, the program will send one uppercase character when the user presses the button and the same lowercase character when he releases the button.

List of the commands:
- forward arrow - F
- backward arrow - B
- left arrow - L
- right arrow - R
- buttons A,B,C,D - corresponding A,B,C,D characters
- speed slider - characters from 0 to 9

ARDUINO EXAMPLE
void setup(){
Serial.begin(9600);
}
void loop(){
char incomingByte;
if( Serial.available() > 0 ){
incomingByte = Serial.read();
if(incomingByte == 'F'){
moveForward();
} else if(incomingByte == 'B')
moveBackward();
}
}
}

================

For more information please visit our site: http://robotclass.ru/tutorials/arduino-bluetooth

Instagramm: https://instagram.com/robotclass.ru
VK: https://vk.com/robotclass_ru
FB: https://facebook.com/makeitlab
Updated on
Mar 29, 2020

Data safety

Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it over time.
No data shared with third parties
Learn more about how developers declare sharing
No data collected
Learn more about how developers declare collection

Ratings and reviews

2.9
51 reviews
Budi Rahmani
October 23, 2021
Work perfectly with HC-05 module with arduino nano and 4WD robot kit. Up button will send 'F' data, down button will send 'B' data, Left button will send 'L' data and Right button will send 'R' data to BT module. We can monitor the received data using serial monitor in arduino ide software. Thank you.
7 people found this review helpful
Did you find this helpful?
Tahira Khatoon
July 16, 2022
It keeps crashing
3 people found this review helpful
Did you find this helpful?
Ralph Aguilar
April 16, 2022
I cant pair this App to my phone
6 people found this review helpful
Did you find this helpful?

What’s new

Just first version.

App support

About the developer
Олег Евсегнеев
oleg.evsegneev@gmail.com
Russia
undefined