Steering Wheel for Arduino Car

Steering Wheel for Arduino Car

Bluetooth remote arduino rc car

Podaci O Aplikaciji


1.0
August 19, 2016
56,274
Android 4.0+
Everyone

Advertisement

Opis Aplikacije


Analiza I Pregled Android Aplikacija: Steering Wheel for Arduino Car, Razvijen Od WestJava Media. Navedeno U Kategoriji Alati. Trenutna Verzija Je 1.0, Ažurirana Na 19/08/2016 . Prema Recenzijama Korisnika Na Google Playu: Steering Wheel for Arduino Car. Postignute Više Od 56 Tisuća Instalacije. Steering Wheel for Arduino Car Trenutno Ima 87 Recenzija, Prosječna Ocjena 3.6 Zvijezda

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);
}
==================================
Trenutno Nudimo Verziju 1.0. Ovo Je Naša Najnovija, Najoptimiziranija Verzija. Prikladan Je Za Mnogo Različitih Uređaja. Besplatno Preuzmite Izravno Apk Iz Google Play Store -A Ili Drugih Verzija Koje Ugošćujemo. Štoviše, Možete Preuzeti Bez Registracije I Nije Potrebna Prijava.

Imamo Više Od 2000+ Dostupnih Uređaja Za Samsung, Xiaomi, Huawei, Oppo, Vivo, Motorola, LG, Google, OnePlus, Sony, Tablet ... S Toliko Opcija, Lako Vam Je Odabrati Igre Ili Softver Koji Odgovara Vašem Uređaju.

Može Vam Biti Korisno Ako Postoje Bilo Kakva Ograničenja Zemlje Ili Bilo Kakva Ograničenja Sa Strane Vašeg Uređaja U Google App Storeu.

Ocijenite I Pregledajte U Google Play Storeu


3.6
87 Ukupno
5 59.8
4 3.4
3 3.4
2 1.1
1 32.2