Arduino USB and BT Terminal
Install Now
Arduino USB and BT Terminal
Arduino USB and BT Terminal

Arduino USB and BT Terminal

Turn your Android smartphone into a USB and BT terminal for Arduino.

Developer: kw5develop
App Size: Varies With Device
Release Date: Apr 21, 2019
Price: Free
Price
Free
Size
Varies With Device

Screenshots for App

Mobile
"Arduino USB Terminal" is an arduino microcontroller shell that will allow you to give instructions easily from your smartphone to your Arduino using the USB and / or bluetooth protocol.
In order to use this app you need:
1) Android smartphone that supports OTG protocol
2) OTG cable
3) Arduino

Below is a very simple sketch example to send characters to Arduino:

char ReadChar;

void setup() {
pinMode(13,OUTPUT);
Serial.begin(9600);

}

void loop() {
if(Serial.available()){
carattereLetto=Serial.read();
if(carattereLetto=='a'){
digitalWrite(13,HIGH);
}
else if(carattereLetto=='b'){
digitalWrite(13,HIGH);
delay(3000);
digitalWrite(13,LOW);
}
else{
digitalWrite(13,HIGH);
delay(1000);
digitalWrite(13,LOW);

}
}



}

Below is a very simple example sketch to receive characters from Arduino:

void setup() {
Serial.begin(9600);

}

void loop() {
Serial.println('a');
delay(1000);

}
Show More
Show Less
Arduino USB and BT Terminal 1.3 Update
2019-06-22 Version History
Added support for reading char or string from Arduino via USB

~kw5develop
More Information about: Arduino USB and BT Terminal
Price: Free
Version: 1.3
Downloads: 2829
Compatibility: Android 4.1
Bundle Id: io.kodular.demarinodavide.ArduinoTERMINAL
Size: Varies With Device
Last Update: 2019-06-22
Content Rating: Everyone
Release Date: Apr 21, 2019
Content Rating: Everyone
Developer: kw5develop


Whatsapp
Vkontakte
Telegram
Reddit
Pinterest
Linkedin
Hide