Arduino Programming Pro APK

No rating yet

... [readmore]


⇣ Download APK ()

This is an original APK file direct fetch from google play. It is safe to download and free of any virus.

Version 2
Update
Size
Category Education
Developer ampower
Downloads ↓ 0
⇣ Download on Google play ()

This is an original APK file direct fetch from google play. It is safe to download and free of any virus.

File Infos

License type Free
Version 2
Size
Requirement 3.0 and up
Type app
Category Education
Package name: com.mpawer.arduino.WhatsUpArduinoPro
Slogan:

Screenshots (12 images)

Arduino Programming Pro screenshot 1 Arduino Programming Pro screenshot 2 Arduino Programming Pro screenshot 3 Arduino Programming Pro screenshot 4 Arduino Programming Pro screenshot 5 Arduino Programming Pro screenshot 6 Arduino Programming Pro screenshot 7 Arduino Programming Pro screenshot 8 Arduino Programming Pro screenshot 9 Arduino Programming Pro screenshot 10 Arduino Programming Pro screenshot 11 Arduino Programming Pro screenshot 12

About Arduino Programming Pro APK

Arduino Programming Pro poster
Arduino Programming Pro APK version 2 poster

Latest update [menu]


*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.
*Added Star(*) button to rate this app and write short reviews about what you like and what you do not. If you have issues and you do not write we will not be able to serve you better.

Description [menu]


Program and test Arduino remotely using Smartphone without downloading code.
[Features]
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.

To start with refer tutorial at: "https://www.instructables.com/id/Unlock-Your-Door-Using-Phone-or-Tablet/"

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

#include <SoftwareSerial.h> // 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**********/

[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.

How to install Arduino Programming Pro APK for Android [menu]


Download Arduino Programming Pro APK file from SameAPK.com, 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 Install when prompted, the APK file you downloaded will be installed on your device.

How to install Arduino Programming Pro APK on Windows 7/8/10 or MAC PC? [menu]


Download Arduino Programming Pro APK file from SameAPK.com to your PC (ex: /Users/xxx/Downloads/), then follow these steps:

Using Emulator:

  • Download And Install one Emulator Softwares (Ex: Bluestacks, GenyMotion, NoxPlayer)

Similar applications [menu]


New Apps



Comments

No comment Yet.