ArduBT - El Profe Garcia 1.0 APK

ArduBT - El Profe Garcia 1.0 Icon
    
4.7/5
180 Ratings
Developer
DINASTIA TECNOLOGICA
Current Version
1.0
Date Published
File Size
1.3 MB
Package ID
appinventor.ai_el_profe_garcia.ArduBT
Price
$ 0.00
Downloads
1.0K+
Category
Android Apps
Genre
Education

APK Version History

Version
1.0 (1)
Architecture
All
Release Date
September 01, 2015
Requirement
Android 1.5+ Cupcake (API 3)
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot
  • ArduBT - El Profe Garcia Screenshot

About Radio FM 90s

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/elprofegarciaConnect 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

What's New in this version