Whats up Arduino Pro

Whats up Arduino Pro

by ampower

free v1
Android application Whats up Arduino Pro screenshot

Whats up Arduino Pro

[Features]App is a instant messenger using which you can send commands as messages to Arduino to do certain functions and respond accordingly.
It has predefined messages (Arduino functions/commands) like pinMode, digitalWrite etc.
and user only has to tap on the pin number to construct messages.Its a great tool to to learn Arduino in the most fun way by chatting with Arduino.
Many Arduino sketches(programs) can be developed around this app to enhance learning experience.
Using this app is a good interactive way of learning machines.
It is also used to quickly test Arduino and Arduino based machines.It uses Bluetooth for communication.
You will need a Arduino with Bluetooth.
You can find many tutorials to connect Bluetooth like HC-05 to Arduino.
You also need to upload in Arduino the sample sketch given here.
This sketch can be customized/changed to suit your needs, language and enhance your experience.[Arduino Sketch]/******sketch for WhatsUpArduino App*******/#include <SoftwareSerial.h> // import the serial librarySoftwareSerial chat(10, 11); // RX, TXvoid 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"); } } //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**********/[Plus Button]The Plus '+' button opens system Bluetooth settings to scan Bluetooth devices and 'pair' them with mobile devices.[Info Button]The info button 'i' connects to 'Language Reference' page on Arduino website.

About Whats up Arduino Pro

Package name (App ID)
com.mpawer.arduino.WhatsUpArduinoPro
Available on
Google Play
Price
Free
Version
v1
Developer
ampower

Looking for the Whats up Arduino Pro APK?

The safest way to get Whats up Arduino Pro (com.mpawer.arduino.WhatsUpArduinoPro) on your Android device is to install it directly from Google Play — you'll always get the latest official version, automatic updates, and no risk of modified or infected APK files from third-party sites.

Features
👥

Social Features

Connect and share with friends and the community.

📚

Learning Tools

Enhance your learning experience with interactive features.

🍽️

Food & Dining

Discover recipes and order food from your favorite restaurants.

Screenshots

See Whats up Arduino Pro in Action

Whats up Arduino Pro Screen 1
Whats up Arduino Pro Screen 2
Whats up Arduino Pro Screen 3
FAQ

Frequently Asked Questions

Is Whats up Arduino Pro free?

Yes, Whats up Arduino Pro is free to download and install on Android through Google Play.

How do I install Whats up Arduino Pro on Android?

Open Google Play on your Android phone or tablet, search for Whats up Arduino Pro by ampower or tap the Google Play button on this page, then tap Install. The app downloads and installs automatically.

What is com.mpawer.arduino.WhatsUpArduinoPro?

com.mpawer.arduino.WhatsUpArduinoPro is the App ID (package name) of Whats up Arduino Pro on Google Play. Every Android app has a unique package name, and it is the safest way to verify you are installing the official app.

Is Whats up Arduino Pro safe to download?

Installing Whats up Arduino Pro from Google Play is the safest option: you get the official version published by ampower, verified by Google Play Protect, with automatic updates. Avoid APK files from unofficial third-party sites.

Whats up Arduino Pro

Get Whats up Arduino Pro Today

Whats up Arduino Pro for Android — free download on Google Play.

Compatible with Android phones and tablets — available on Google Play.

Love this app?

Share it with friends and family on your favorite social network.

Ask AI about this app

Get instant answers about features, tips and more from popular AI assistants.