1.0 / October 22, 2016
(5.0/5) (2)

Description

Arduino Control es una aplicación pensadaparala comunicación entre android y arduino mediante bluetooth.Estacomunicación se basa en la utilización de botones a modopulsador,con el objetivo de poder activar o desactivar los pines denuestroarduino.

Para facilitar la integración de Arduino Control connuestroproyecto, tenemos la posibilidad de modificar lasvariablesenviadas a arduino, de esta forma podremos identificar ennuestroprograma 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 necesariotenervinculado previamente nuestro teléfono móvil a arduino,mediante laconfiguración de nuestro propio móvil.


Ejemplo para encender el pin 13:

*NOTA: recordar que el pin Rx y Tx van cruzados con respectoaarduino.


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

}
Arduino Controlisdesigned for communication between android and arduinoviabluetooth application. This communication is based on the useofbuttons to push mode, with the aim to enable or disable ourarduinopins.

To facilitate the integration of Arduino control with ourproject,we are able to modify the variables sent to arduino, thisway wecan identify in our arduino program that is variable.
The default variables are:


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
9h 9 9l
10 10h 10l
11 11h 11l
12 12h 12l
13 13h 13l


To connect with bleutooth is necessary to have previouslypairedyour mobile phone to arduino, by setting our ownmobile.


Example to turn the pin 13:

* NOTE: remember that the Rx and Tx pin will cross overtoarduino.


void setup ()
{
  pinMode (13, OUTPUT);
  Serial.begin (9600);
  digitalWrite (13, LOW);
}


void loop ()
{
      char data;
      String str = "";
while (! Serial.available ())
  {}
while (Serial.available ()> 0) {
   Serial.read data = ();
   string + = data;

    delay (5);
  }

    if (string == "13h")
      {
        digitalWrite(13,HIGH);
        delay (5);
      }
    if (string == "13l")
      {
        digitalWrite(13,LOW);
        delay (5);
      }
      
}

App Information Arduino Control

  • App Name
    Arduino Control
  • Package Name
    com.produccionesle.arduinocontrol
  • Updated
    October 22, 2016
  • File Size
    Undefined
  • Requires Android
    Android 4.0 and up
  • Version
    1.0
  • Developer
    PRODUCCIONES LE
  • Installs
    50 - 100
  • Price
    Free
  • Category
    Tools
  • Developer
  • Google Play Link

Arduino Control Version History

Select Arduino Control Version :
  • 1.0 (1) - Latest Version
  • Arduino Control 1.0 APK File

    Publish Date: 2017 /3/15
    Requires Android: Android 4.0+ (Ice Cream Sandwich, API: 14)
    File Size: 2.4 MB
    Tested on: Android 6.0 (Marshmallow, API: 23)
    File Sha1: 463d1d83e4f98a6677750151b4a13600890899de
    APK Signature: 24567ff13f874afb7cdb300984478f955ef86087

PRODUCCIONES LE Show More...

Arduino Control 1.0 APK
Arduino Control es una aplicación pensadaparala comunicación entre android y arduino mediante bluetooth.Estacomunicación se basa en la utilización de botones a modopulsador,con el objetivo de poder activar o desactivar los pines denuestroarduino.Para facilitar la integración de Arduino Control connuestroproyecto, tenemos la posibilidad de modificar lasvariablesenviadas a arduino, de esta forma podremos identificar ennuestroprograma de arduino de que variable se trata.Las variables por defecto son las siguientes:PIN ON OFF0 0h 0l1 1h 1l2 2h 2l3 3h 3l4 4h 4l5 5h 5l6 6h 6l7 7h 7l8 8h 8l9 9h 9l10 10h 10l11 11h 11l12 12h 12l13 13h 13lPara realizar la conexión mediante bleutooth es necesariotenervinculado previamente nuestro teléfono móvil a arduino,mediante laconfiguración de nuestro propio móvil.Ejemplo para encender el pin 13:*NOTA: recordar que el pin Rx y Tx van cruzados con respectoaarduino.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);}}Arduino Controlisdesigned for communication between android and arduinoviabluetooth application. This communication is based on the useofbuttons to push mode, with the aim to enable or disable ourarduinopins.To facilitate the integration of Arduino control with ourproject,we are able to modify the variables sent to arduino, thisway wecan identify in our arduino program that is variable.The default variables are:PIN ON OFF0 0h 0l1 1h 1l2 2h 2l3 3h 3l4 4h 4l5 5h 5l6 6h 6l7 7H 7l8 8h 8l9h 9 9l10 10h 10l11 11h 11l12 12h 12l13 13h 13lTo connect with bleutooth is necessary to have previouslypairedyour mobile phone to arduino, by setting our ownmobile.Example to turn the pin 13:* NOTE: remember that the Rx and Tx pin will cross overtoarduino.void setup (){  pinMode (13, OUTPUT);  Serial.begin (9600);  digitalWrite (13, LOW);}void loop (){      char data;      String str = "";while (! Serial.available ())  {}while (Serial.available ()> 0) {   Serial.read data = ();   string + = data;    delay (5);  }    if (string == "13h")      {        digitalWrite(13,HIGH);        delay (5);      }    if (string == "13l")      {        digitalWrite(13,LOW);        delay (5);      }      }