Arduino control 11 Bits Apk

Arduino control 11 Bits Apk

Latest version 1..0.1
16 Sep 2015

Older Versions

Apk Infos

Version1..0.1
Rating3.7/5, based on 3 votes
Size‎1.5 MB
Requires AndroidAndroid 1.6+ (Donut)
Author's NotesWith this new application you can control via bluetooth, Arduino ATmega2560

About Arduino control 11 Bits APK

Arduino control 11 Bits APK Download for Android
Arduino control 11 Bits APK Download for Android

Description

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);
}

}
}

How to install Arduino control 11 Bits APK on Android phone or tablet?

Download Arduino control 11 Bits APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (appinventor.ai_avivate09.Bluetoothsalidasdigitalescontrol-v1..0.1-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1..0.1 (2)1.5 MB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required