The app is for users who have built the remote controlled bluetooth enabled Arduino toy car but need to control it over bluetooth from their mobile device. The controls and how-to are listed in here.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
In short below is the code snippet for arduino
if (receivedChar == '1') {
forward();
flag = 6;
}
the code mapping is as below
Forward --> 1
Back --> 2
Right --> 3
Left --> 4
Stop --> 5
Auto Pilot --> 8
Fn1 --> 6
Fn2 --> 7
Fn3 --> 9
L'application est pour les utilisateurs qui ont construit le bluetooth commandé à distance activé Arduino voiture de jouet, mais besoin de le contrôler via Bluetooth à partir de leur appareil mobile. Les contrôles et comment faire sont énumérées ici.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
En bref ci-dessous est l'extrait de code pour Arduino
if (receivedChar == '1') {
vers l'avant();
flag = 6;
}
le mappage de code est comme ci-dessous
Forward -> 1
Retour -> 2
Droit -> 3
Gauche -> 4
Stop -> 5
Auto Pilot -> 8
Fn1 -> 6
Fn2 -> 7
Fn3 -> 9