Arduino Control icon

1.0 by PRODUCCIONES LE


Mar 25, 2017

About Arduino Control

English

Arduinio Control allows control through bluetooth arduino.

Arduino Control es una aplicación pensada para la comunicación entre android y arduino mediante bluetooth. Esta comunicación se basa en la utilización de botones a modo pulsador, con el objetivo de poder activar o desactivar los pines de nuestro arduino.

Para facilitar la integración de Arduino Control con nuestro proyecto, tenemos la posibilidad de modificar las variables enviadas a arduino, de esta forma podremos identificar en nuestro programa de arduino de que variable se trata.

Las variables por defecto son las siguientes:

PIN ON OFF

0 0h 0l

1 1h 1l

2 2h 2l

3 3h 3l

4 4h 4l

5 5h 5l

6 6h 6l

7 7h 7l

8 8h 8l

9 9h 9l

10 10h 10l

11 11h 11l

12 12h 12l

13 13h 13l

Para realizar la conexión mediante bleutooth es necesario tener vinculado previamente nuestro teléfono móvil a arduino, mediante la configuración de nuestro propio móvil.

Ejemplo para encender el pin 13:

*NOTA: recordar que el pin Rx y Tx van cruzados con respecto a arduino.

void setup()

{

pinMode(13,OUTPUT);

Serial.begin(9600);

digitalWrite(13,LOW);

}

void loop()

{

char dato;

String cadena="";

while (!Serial.available())

{}

while(Serial.available()>0){

dato=Serial.read();

cadena+=dato;

delay(5);

}

if (cadena=="13h")

{

digitalWrite(13,HIGH);

delay(5);

}

if (cadena=="13l")

{

digitalWrite(13,LOW);

delay(5);

}

}

What's New in the Latest Version 1.0

Last updated on Mar 25, 2017

Minor bug fixes and improvements. Install or update to the newest version to check it out!

Translation Loading...

Additional APP Information

Latest Version

Request Arduino Control Update 1.0

Uploaded by

احمد محمد

Requires Android

Android 4.0+

Show More

Arduino Control Screenshots

Comment Loading...
Languages
Languages
Searching...
Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Subscribed Successfully!
You're now subscribed to APKPure.
Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Success!
You're now subscribed to our newsletter.