ON-OFF Led Arduino Bluetooth Application icon

ON-OFF Led Arduino Bluetooth 1.0

3.6 MB / 1+ Downloads / Rating 5.0 - 1 reviews


See previous versions

ON-OFF Led Arduino Bluetooth, developed and published by Tech Home Bolivia, has released its latest version, 1.0, on 2017-02-25. This app falls under the Education category on the Google Play Store and has achieved over 50 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

ON-OFF Led Arduino Bluetooth APK available on this page is compatible with all Android devices that meet the required specifications (Android 1.6+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: appinventor.ai_techhome_app.techhomeproyecto0

Updated: 8 years ago

Developer Name: Tech Home Bolivia

Category: Education

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing ON-OFF Led Arduino Bluetooth on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

ON-OFF Led Arduino Bluetooth 1.0
2017-02-25 / 3.6 MB / Android 1.6+

About this app

Enciende y Apaga un LED desde tú Celular Android.
Descripción de Caracteres enviados:

"E" para Encendido
"A" para Apagado

char entrada;//variable del tipo caracter
void setup(){
Serial.begin(9600); //Iniciar el serial
pinMode(2, OUTPUT); //Establecer el pin 2 como salida
}

void loop(){
if(Serial.available()>=1){
entrada = Serial.read(); //Leer un caracter
if(entrada == 'E'){ //Si es 'E', EL LED QUE ESTA CONECTADO AL PIN 2 DEL ARDUINO A TRAVÉS DE UNA RESISTENCIA DE 220 OHM SE ENCENDERÁ
digitalWrite(2,HIGH);
delay(200);
}
if(entrada == 'A'){ //Si es 'A', EL LED QUE ESTA CONECTADO AL PIN 2 DEL ARDUINO A TRAVÉS DE UNA RESISTENCIA DE 220 OHM SE APAGARÁ
digitalWrite(2,LOW);
delay(200);
}
}
}

New features

Actualización con cambio de Botones

App Permissions

Allows an application to read from external storage.
Allows applications to connect to paired bluetooth devices.
Allows an application to write to external storage.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.