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
Die App ist für Benutzer, die das ferngesteuerte Bluetooth-fähigen Arduino Spielzeugauto gebaut haben, sondern müssen von ihrem mobilen Gerät es über Bluetooth zu steuern. Die Kontrollen und Vorgehensweisen sind hier aufgeführt.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
Kurz unterhalb ist das Code-Snippet für Arduino
if (receivedChar == '1') {
Vorwärts();
flag = 6;
}
der Code-Mapping ist als unten
Vorwärts -> 1
Zurück -> 2
Rechts -> 3
Links -> 4
Stop -> 5
Autopilot -> 8
Fn1 -> 6
Fn2 -> 7
Fn3 -> 9