Steering Wheel for Arduino Car is a remote to control RC arduino,
You can control the RC were made with Arduino by tilting to the right and left of your android, like when playing a car racing game.
This application sends strings via bluetooth based Accelerometer sensor android, message format
x|y|z,
example message 40|50|80,
means that
x = 10
y = 50
z = 80
with this information you can process into motion you made to taste,
example:
void loop on arduino sketch
http://www.ttsberita.com/?p=464
==================================
boolean belok = false;
boolean onstop = false;
void loop() {
x = 0;
y = 0;
z = 0;
if(bt.available()){
x = bt.readStringUntil('|').toInt();
y = bt.readStringUntil('|').toInt();
z = bt.readStringUntil(',').toInt();
}
belok = false;
onstop = false;
if(x != 0 || y != 0 || z != 0){
if(z < 50) // stop
{
analogWrite(A1,0);
analogWrite(A2,0);
onstop = true;
}
if(y > 20 && !onstop)
{
analogWrite(A1,255);
analogWrite(A2,0);
belok = true;
}
else if(y < -20 && !onstop) // turn left
{
analogWrite(A1,0);
analogWrite(A2,255);
belok = true;
}
if(!onstop && !belok){ // forward
analogWrite(A1,255);
analogWrite(A2,255);
}
}
delay(50);
}
==================================
Steering Wheel for Arduino Car is an Android Tools app developed by WestJava Media and published on the Google play store. It has gained around 10000 installs so far, with an average rating of 3.0 out of 5 in the play store.
Steering Wheel for Arduino Car requires Android with an OS version of 4.0 and up. In addition, the app has a content rating of Everyone, from which you can decide if it is suitable to install for family, kids, or adult users. Steering Wheel for Arduino Car is an Android app and cannot be installed on Windows PC or MAC directly.
Android Emulator is a software application that enables you to run Android apps and games on a PC by emulating Android OS. There are many free Android emulators available on the internet. However, emulators consume many system resources to emulate an OS and run apps on it. So it is advised that you check the minimum and required system requirements of an Android emulator before you download and install it on your PC.
Below you will find how to install and run Steering Wheel for Arduino Car on PC:
If you follow the above steps correctly, you should have the Steering Wheel for Arduino Car ready to run on your Windows PC or MAC. In addition, you can check the minimum system requirements of the emulator on the official website before installing it. This way, you can avoid any system-related technical issues.
Steering Wheel for Arduino Car APK 1.0 | 3.63 MB | 1.0 |