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
این برنامه برای کاربرانی که بلوتوث کنترل از راه دور ساخته شده است را فعال کنید آردوینو ماشین اسباب بازی اما نیاز به آن را کنترل از طریق بلوتوث از دستگاه تلفن همراه خود را. کنترل و چگونه به در اینجا ذکر شده است.
http://robust-tech.blogspot.com/2016/02/arduino-remote-car-app.html
به طور خلاصه در زیر کد برای آردوینو
اگر (receivedChar == '1') {
رو به جلو()؛
پرچم = 6؛
}
نقشه برداری کد به شرح زیر میباشد
رو به جلو -> 1
برگشت -> 2
راست -> 3
چپ -> 4
توقف -> 5
خلبان خودکار -> 8
Fn1 -> 6
FN2 -> 7
Fn3 -> 9