About ArduBT - El Profe Garcia
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 Connect via bluetooth from your Android to Arduino, when you press the number 1 button ON1 was sent and when you press the number 2 button OFF1 be sent, BT The SELECT button is used to select the Bluetooth module connected to Arduino. Program to be loaded into the Arduino:
led13 int = 13;
int status = 0;
void setup () {
Serial.begin (9600);
pinMode (led13, OUTPUT);
}
void loop () {
if (Serial.available ()> 0) {
Serial.read status = ();
}
if (status == "1") {
digitalWrite (led13, HIGH);
}
if (status == "2") {
digitalWrite (led13, LOW);
}
}
Learn how to create your own application in http://youtu.be/S8q1vbVMV2Q
The program loaded into the Arduino can be downloaded in www.elprofegarcia.com
The video for making connections and load applications found in the www.youtube.com/elprofegarcia
Download and install
ArduBT - El Profe Garcia version 1.0 on your
Android device!
Downloaded 10,000+ times, content rating: Everyone
Android package:
appinventor.ai_el_profe_garcia.ArduBT, download ArduBT - El Profe Garcia.apk
by M####:
Me sirve de referencia