Arduino control 11 Bits Application icon

Arduino control 11 Bits 1..0.1

1.5 MB / 1+ Downloads / Rating 3.7 - 3 reviews


See previous versions

Arduino control 11 Bits, developed and published by Jose Luis AvendaƱo Mendez, has released its latest version, 1..0.1, on 2015-09-16. This app falls under the Productivity category on the Google Play Store and has achieved over 100 installs. It currently holds an overall rating of 3.7, based on 3 reviews.

Arduino control 11 Bits 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_avivate09.Bluetoothsalidasdigitalescontrol

Updated: 9 years ago

Developer Name: Jose Luis AvendaƱo Mendez

Category: Productivity

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino control 11 Bits 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.

App Rating

3.7
Total 3 reviews

Previous Versions

Arduino control 11 Bits 1..0.1
2015-09-16 / 1.5 MB / Android 1.6+

About this app

Esta aplicacion fue desarrollada para funcionar con ATMEGA2560, pero puede funcionar tambien con otras versiones de arduino, como lo son arduino uno, arduino nano.
Los materiales necesarios son:
Arduino ATMEGA2560.
HC-05 Puerto com bluetooth.
Celular android.

El programa del arduino:
// Definicion de pines de arduino a usar.
byte BIT0=2;
byte BIT1=3;
byte BIT2=4;
byte BIT3=5;
byte BIT4=6;
byte BIT5=7;
byte BIT6=8;
byte BIT7=9;
byte BIT8=10;
byte BIT9=11;
byte BIT10=12;

int Entrada=0; // Byte de entrada por puerto serial

void setup()
{
// Arranque de puerto serial, el puerto a utilizar es el puerto 1, que corresponde a los pines RX=18 y TX=19 para arduino ATMEGA2560, si desea cambiar el puerto modificar Serial1.begin
// Cambiar el numero "1" por el numero del puerto a utilizar.
Serial1.begin(9600);
pinMode(BIT0, OUTPUT);
pinMode(BIT1, OUTPUT);
pinMode(BIT2, OUTPUT);
pinMode(BIT3, OUTPUT);
pinMode(BIT4, OUTPUT);
pinMode(BIT5, OUTPUT);
pinMode(BIT6, OUTPUT);
pinMode(BIT7, OUTPUT);
}

void loop()
{
if (Serial1.available() > 0) {

Entrada = Serial1.read(); // get incoming byte:

if(Entrada == 'A'){
digitalWrite(BIT0, HIGH); // switch on LED
Serial1.print('A'); // send a char
delay(100);
digitalWrite(BIT0,LOW);
}
if(Entrada == 'B'){
digitalWrite(BIT1, HIGH); // switch on LED
Serial1.print('B'); // send a char
delay(100);
digitalWrite(BIT1,LOW);
}
if(Entrada == 'C'){
digitalWrite(BIT2, HIGH); // switch on LED
Serial1.print('C'); // send a char
delay(100);
digitalWrite(BIT2,LOW);
}
if(Entrada == 'D'){
digitalWrite(BIT3, HIGH); // switch on LED
Serial1.print('D'); // send a char
delay(100);
digitalWrite(BIT3,LOW);
}
if(Entrada == 'E'){
digitalWrite(BIT4, HIGH); // switch on LED
Serial1.print('E'); // send a char
delay(100);
digitalWrite(BIT4,LOW);
}
if(Entrada == 'F'){
digitalWrite(BIT5, HIGH); // switch on LED
Serial1.print('F'); // send a char
delay(100);
digitalWrite(BIT5,LOW);
}
if(Entrada == 'G'){
digitalWrite(BIT6, HIGH); // switch on LED
Serial1.print('G'); // send a char
delay(100);
digitalWrite(BIT6,LOW);
}
if(Entrada == 'H'){
digitalWrite(BIT7, HIGH); // switch on LED
Serial1.print('H'); // send a char
delay(100);
digitalWrite(BIT7,LOW);
}
if(Entrada == 'I'){
digitalWrite(BIT8, HIGH); // switch on LED
Serial1.print('I'); // send a char
delay(100);
digitalWrite(BIT8,LOW);
}
if(Entrada == 'J'){
digitalWrite(BIT9, HIGH); // switch on LED
Serial1.print('J'); // send a char
delay(100);
digitalWrite(BIT9,LOW);
}
if(Entrada == 'K'){
digitalWrite(BIT10, HIGH); // switch on LED
Serial1.print('K'); // send a char
delay(100);
digitalWrite(BIT10,LOW);
}

}
}

App Permissions

Allows applications to connect to paired bluetooth devices.
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.