Steering Wheel for Arduino Car

Steering Wheel for Arduino Car Free App

Rated 2.91/5 (11) —  Free Android application by WestJava Media

Advertisements

About Steering Wheel for Arduino Car

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);
}
==================================

How to Download / Install

Download and install Steering Wheel for Arduino Car version 1.0 on your Android device!
Downloaded 5,000+ times, content rating: Everyone
Android package: com.ttsberita.arduinoaccelerometercar, download Steering Wheel for Arduino Car.apk

All Application Badges

Free
downl.
Android
4.0+
For everyone
Android app

App History & Updates

More downloads  Steering Wheel for Arduino Car reached 5 000 - 10 000 downloads

What are users saying about Steering Wheel for Arduino Car

I70%
by I####:

It doesn't have any sound effects and doesn't let you use the fetches so it's rubbish

P70%
by P####:

Goooooooooood

B70%
by B####:

Love it


Share The Word!


Rating Distribution

RATING
2.95
11 users

5

4

3

2

1