Discover

Topics

ArduBT - El Profe Garcia

ArduBT - El Profe Garcia APK

ArduBT - El Profe Garcia APK

1.0 FreeDINASTIA TECNOLOGICA ⇣ Download APK (1.29 MB)

What's ArduBT - El Profe Garcia APK?

ArduBT - El Profe Garcia is a app for Android, It's developed by DINASTIA TECNOLOGICA author.
First released on google play in 9 years ago and latest version released in 8 years ago.
This app has 0 download times on Google play and rated as 4.72 stars with 180 rated times.
This product is an app in Education category. More infomartion of ArduBT - El Profe Garcia on google play
Conexión vía bluetooth desde su Android al Arduino, cuando oprima el botón ON1 se enviara el numero 1 y cuando oprima el botón OFF1 se enviara el numero 2, El botón SELECCIONAR BT se usa para que seleccione el modulo Bluetooth conectado al Arduino. Programa que debe cargar en el Arduino:

int led13=13;
int estado=0;

void setup(){
Serial.begin(9600);
pinMode(led13,OUTPUT);
}

void loop(){
if(Serial.available()>0){
estado = Serial.read();
}
if (estado =='1'){
digitalWrite(led13,HIGH);
}
if(estado=='2'){
digitalWrite(led13,LOW);
}
}

Aprenda a crear su propia aplicación en http://youtu.be/S8q1vbVMV2Q
El programa para cargar en el Arduino lo puede descargar en www.elprofegarcia.com
El vídeo para realizar las conexiones y cargar las aplicaciones los encuentran en www.youtube.com/elprofegarcia