Download Android Apps and Games
AppBrain
  • Apps
  • Apps being viewed right now Trending apps today Most popular apps All-time most downloaded apps Top rated apps
  • Intelligence ▾
    Intelligence overview → Track any Android app or your whole market
    Track & analyze
    Keyword Tracker & OptimizerTrack & improve Play rankings App Performance ReportOne-off PDF for any app StatisticsFree Android & Play market stats
    Promote your app
    Featured Apps App Links
  • Intelligence
  • Pricing
  • Dashboard
  • Sign up
  • Log in
Android Apps > Education > Arduino Remote Control using Phone Bluetooth.
Arduino Remote Control using Phone Bluetooth. icon

Arduino Remote Control using Phone Bluetooth.

7
ampower
0.00
0 reviews
10,000+
Downloads
Free

Chat with Arduino and Test it remotely using Smartphone Bluetooth.

This app is currently not available on Google Play.

Try these apps instead

AutoApp for Arduino icon AutoApp for Arduino
joaomgcd
4.2
Free
10,000+
Arduino Bluetooth Robot Car -  icon Arduino Bluetooth Robot Car -
Bluino
4.1
Free
50,000+
Bluino Loader - Arduino IDE icon Bluino Loader - Arduino IDE
Bluino
3.7
Free
100,000+
Arduino bluetooth controller icon Arduino bluetooth controller
Giumig development apps
3.9
Free
1,000,000+
Arduino Bluetooth  Controller icon Arduino Bluetooth Controller
Ioannis Tzanellis
2.9
Free
100,000+
ArduController icon ArduController
Ettore Gallina
4.6
Free
100,000+
Bluetooth RC Car Control DIY icon Bluetooth RC Car Control DIY
NECO
3.4
Free
100,000+
Arduino Drone Remote Control icon Arduino Drone Remote Control
AppZeeInc
3.9
Free
100,000+

About Arduino Remote Control using Phone Bluetooth.

Arduino Remote Control using Phone Bluetooth. was an education app developed by ampower. It was removed from Google Play Aug 10, 2022 and is no longer available for download.

Download Statistics

Arduino Remote Control using Phone Bluetooth. had been downloaded 22 thousand times before it became unavailable.

User Ratings

The app had no ratings.

App Information

Arduino Remote Control using Phone Bluetooth. was free to download. The APK download size was 2.34 MB. The last available version was 7. The last update was on November 27, 2018.

Technical Requirements

Arduino Remote Control using Phone Bluetooth. required Android 4.0+ or higher. The app had a content rating of Everyone. The app had been available on Google Play January 2017.

Description
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**********/

Recent changes:
*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.
Show more Show less

More data about Arduino Remote Control using Phone Bluetooth.

Price Free to download
Download estimate 22 thousand
Rating No ratings
Version 7
APK size 2.33 MB
Number of libraries 5
Designed for Android 4.0+
Suitable for Everyone
Ads Contains ads

App Performance Report

Get a detailed PDF report for Arduino Remote Control using Phone Bluetooth. with download trends, rating history, and key performance statistics — useful for competitive research or tracking your own app. Learn more

Get PDF Report — $29

Changelog of Arduino Remote Control using Phone Bluetooth.

Show changelog

Developer information for ampower

ampower

Website

Address:

Share Arduino Remote Control using Phone Bluetooth.

Comments on Arduino Remote Control using Phone Bluetooth. for Android

★★★★★ Thank you
★★★★★ Very good idea.
★★★★★ Its awesome for learning purposes
★★☆☆☆ Google Play Subscription fee added for basic functions! Uninstalled!
★★☆☆☆ disgusting!
★★☆☆☆ Needs subscription to function

Technologies used by Arduino Remote Control using Phone Bluetooth.

8 permissions · 5 libraries
Subscribe to see full permission and library details
Popular Education Apps Apps on sale Today's trending apps Top new apps Apps other people are watching
AutoApp for Arduino icon AutoApp for Arduino
Arduino Bluetooth Robot Car -  icon Arduino Bluetooth Robot Car -
Bluino Loader - Arduino IDE icon Bluino Loader - Arduino IDE
Arduino bluetooth controller icon Arduino bluetooth controller
Arduino Bluetooth  Controller icon Arduino Bluetooth Controller
ArduController icon ArduController
Bluetooth RC Car Control DIY icon Bluetooth RC Car Control DIY
Arduino Drone Remote Control icon Arduino Drone Remote Control

Back to top
AppBrain Intelligence premium content

Subscribe now to get full and unlimited access to AppBrain Intelligence. You'll have access to:

  • App Intelligence dashboard (performance timeline, competitor comparison, country rankings, insight cards)
  • Detailed ranking data per app
  • Full timeline per developer
  • Device market shares data per country
  • Unlimited keyword tracking
1 Month

$75/mo
(billed every month)

SAVE 0%
Subscribe
3 Months

$65/mo
($195 billed every 3 months)

SAVE 13%
Subscribe
1 Year

$57.50/mo
($690 billed every year)

SAVE 23%
Subscribe
Each subscription will automatically renew 3 days before the expiration date for the same time period. Subscriptions can be cancelled at any time before the renewal.

AppBrain is a directory focused on discovering great apps and games. We give statistics, rankings and search options that Google Play and the App Store don't have. All trademarks are owned by their respective owners. AppBrain doesn't offer APKs or binaries, and always lets users install the official version from Google Play or the App Store.

More apps

  • Top Android apps being viewed
  • HTC Motion Launch
  • Kids Halloween Shape Puzzles
  • Amaze GO!

Android Statistics

  • Android statistics
  • Google Play Developer stats
  • Trending Android Apps
  • Top popular Apps
  • Buy the best Android phone

About AppBrain

  • Contact
  • Privacy
  • Documentation
  • DMCA takedowns
  • Articles
  • Blog
  • Android App Marketing: Learn how to better market your Android app
© 2010-2026 - AppBrain