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'applicazione è per gli utenti che hanno costruito il bluetooth telecomandato abilitato macchinina Arduino ma hanno bisogno di controllarlo tramite Bluetooth dal proprio dispositivo mobile. I controlli e how-to sono elencate qui.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
In breve qui di seguito è il frammento di codice per Arduino
if (receivedChar == '1') {
inoltrare();
flag = 6;
}
il codice di mappatura è come sotto
Inoltra -> 1
Indietro -> 2
Destro -> 3
A sinistra -> 4
Stop -> 5
Auto pilota -> 8
Fn1 -> 6
Fn2 -> 7
FN3 -> 9