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
Aplikasi ini adalah untuk pengguna yang telah membangun bluetooth remote control diaktifkan Arduino mainan mobil tetapi perlu mengontrolnya lebih bluetooth dari perangkat mobile mereka. Kontrol dan bagaimana-untuk tercantum dalam sini.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
Singkatnya bawah adalah potongan kode untuk Arduino
jika (receivedChar == '1') {
meneruskan();
flag = 6;
}
pemetaan kode adalah sebagai berikut
Maju -> 1
Kembali -> 2
Kanan -> 3
Kiri -> 4
Berhenti -> 5
Auto Pilot -> 8
Fn1 -> 6
Fn2 -> 7
Fn3 -> 9