Arduino Remote Control using Phone Bluetooth. APK

Version 7 - com.mpawer.arduino.WhatsUpArduino
mpawer,arduino,whatsuparduino,education

Chat with Arduino and Test it remotely using Smartphone Bluetooth.

Arduino Remote Control using Phone Bluetooth. apk

APP Information

Download Version 7 (11)
Apk Size2.34 MB
App Developerampower
Malware CheckTRUSTED
Install on Android4.0.x and up
App Packagecom.mpawer.arduino.WhatsUpArduino.apk
MD528153f6e575294e2a6037bfb290b54a7
Rate5

Download Arduino Remote Control using Phone Bluetooth. 7 APK

App Description

Arduino Remote Control using Phone Bluetooth. is mpawer,arduino,whatsuparduino,education, content rating is Everyone (PEGI-3). This app is rated 5 by 1 users who are using this app. To know more about the company/developer, visit ampower website who developed it. com.mpawer.arduino.WhatsUpArduino.apk apps can be downloaded and installed on Android 4.0.x and higher Android devices. The Latest Version of 7 Available for download. Download the app using your favorite browser and click Install to install the application. Please note that we provide both basic and pure APK files and faster download speeds than APK Mirror. This app APK has been downloaded 144+ times on store. You can also download com.mpawer.arduino.WhatsUpArduino APK and run it with the popular Android Emulators.

To see how to use this App click here. It is tutorial with a sample project. You can use the App for your own projects.

For this App to work you need to put a Arduino sketch in your Arduino device. To download the Arduino Sketch click here.

Learn various Arduino Commands by Chatting with Arduino. Program and set Arduino Pin functions by sending commands remotely without downloading code.

App is used to program (change pin settings) of Arduino remotely using Bluetooth. You do not need to download programs to change pin settings like pin mode. You can do it remotely using this app.

Its a great tool to learn Arduino in the most fun way by chatting with Arduino.

You can use the sample sketch given here. This sketch can be customized/changed to suit your needs, language and enhance your experience.

[Arduino Sketch]
/******Sketch for App*******/

#include  // import the serial library

SoftwareSerial chat(10, 11); // RX, TX

void setup() {
chat.begin(9600);
}

void loop() {
if (chat.available()){
String readStr = "";
readStr=chat.readString();
//pinMode
if(readStr.startsWith("pinMode")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
String mode=readStr.substring(readStr.indexOf(", ")+2,readStr.indexOf(")"));
if(mode=="INPUT"){
pinMode(pinNo, INPUT);}
if(mode=="OUTPUT"){
pinMode(pinNo, OUTPUT);}
if(mode=="INPUT_PULLUP"){
pinMode(pinNo, INPUT_PULLUP);}
chat.println("done");
}
//digitalWrite
if(readStr.startsWith("digitalWrite")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
String value=readStr.substring(readStr.indexOf(", ")+2,readStr.indexOf(")"));
if(value=="HIGH"){
digitalWrite(pinNo, HIGH);}
if(value=="LOW"){
digitalWrite(pinNo, LOW);}
chat.println("done");
}
//digitalRead
if(readStr.startsWith("digitalRead")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
int val=digitalRead(pinNo);
if(val==1){ 
chat.println("it's HIGH");}
if(val==0){ 
chat.println("it's LOW");}
}
//analogWrite
if(readStr.startsWith("analogWrite")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
String val=readStr.substring(readStr.indexOf(", ")+2,readStr.indexOf(")"));
int value=val.toInt();
if(pinNo==10 || pinNo==11){
chat.println("You were trying to write on pins which are used by bluetooth RX/TX");// analog write/PWM on pins used by bluetooth can interrupt communication.
}else{
analogWrite(pinNo, value);
chat.println("done");
}
}

//tone
if(readStr.startsWith("tone")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
String frq=readStr.substring(readStr.indexOf(", ")+2,readStr.indexOf(")"));
int frequency=frq.toInt();
String dur=readStr.substring(readStr.lastIndexOf(", ")+2,readStr.indexOf(")"));
int temp=dur.toInt();
long duration=temp*1000;
if(pinNo==10 || pinNo==11){
chat.println("You were trying to write on pins which are used by bluetooth RX/TX");// analog write/PWM on pins used by bluetooth can interrupt communication.
}else{
tone(pinNo, frequency, duration);
chat.println("done");
}
}
//analogRead
if(readStr.startsWith("analogRead")){
String pin=readStr.substring(readStr.indexOf("(")+1,readStr.indexOf(","));
int pinNo=pin.toInt();
int val=analogRead(pinNo);
chat.println("it's " + String(val));
}

}

}
/********end of sketch**********/
 

App ChangeLog

  • *Added Advanced I/O function 'tone' used to generate different tones.
  • *Added 'Share' button to share chat history using whatsapp, email, SMS, Bluetooth etc. It also gives option to store on Google Drive or other Storage apps.

App Screens

Arduino Remote Control using Phone Bluetooth. App Screen 1Arduino Remote Control using Phone Bluetooth. App Screen 2Arduino Remote Control using Phone Bluetooth. App Screen 3Arduino Remote Control using Phone Bluetooth. App Screen 4

Older Versions

More Android Apps to Consider

Google Play Reviews

  1. A Google user-avatar

    A Google user

    Needs subscription to function

  2. Defalt _.-avatar

    Defalt _.

    Very good idea.

  3. Ashiqur Rahman-avatar

    Ashiqur Rahman

    disgusting!

  4. Ramana Botta-avatar

    Ramana Botta

    Thank you

  5. Jack Yego-avatar

    Jack Yego

    Its awesome for learning purposes

  6. -avatar

  7. -avatar

  8. -avatar

  9. -avatar

  10. -avatar