1/4
Arduino Remote Control using Phone Bluetooth. screenshot 0
Arduino Remote Control using Phone Bluetooth. screenshot 1
Arduino Remote Control using Phone Bluetooth. screenshot 2
Arduino Remote Control using Phone Bluetooth. screenshot 3
Arduino Remote Control using Phone Bluetooth. Icon

Arduino Remote Control using Phone Bluetooth.

ampower
Trustable Ranking Iconविश्र्वासार्ह
1K+डाऊनलोडस
2.5MBसाइज
Android Version Icon4.0.1 - 4.0.2+
अँड्रॉईड आवृत्ती
7(12-03-2020)नविनोत्तम आवृत्ती
-
(0 समीक्षा)
Age ratingPEGI-3
डाऊनलोड
तपशीलसमीक्षाआवृत्त्यामाहिती
1/4

Arduino Remote Control using Phone Bluetooth. चे वर्णन

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


Arduino Remote Control using Phone Bluetooth. - आवृत्ती 7

(12-03-2020)
इतर आवृत्त्या
काय नविन आहे*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.

अजुनपर्यंत कोणतेही अभिप्राय किंवा रेटिंग्ज नाहीत! हे देणारे पहिले होण्यासाठी कृपया करा

-
0 Reviews
5
4
3
2
1
Info Trust Icon
चांगल्या अॅपची हमीह्या अॅप्लीकेशनने व्हायरस, मालवेयर आणि इतर द्वेषपूर्ण हल्ल्यांच्या सुरक्षा चाचण्या पास केल्या आहेत आणि यात कुठलाही धोका नाहीय.

Arduino Remote Control using Phone Bluetooth. - एपीके माहिती

एपीके आवृत्ती: 7पॅकेज: com.mpawer.arduino.WhatsUpArduino
अँड्रॉइड अनुकूलता: 4.0.1 - 4.0.2+ (Ice Cream Sandwich)
विकासक:ampowerगोपनीयता धोरण:https://sites.google.com/view/ampower-apps/privacypolicyपरवानग्या:8
नाव: Arduino Remote Control using Phone Bluetooth.साइज: 2.5 MBडाऊनलोडस: 6आवृत्ती : 7प्रकाशनाची तारीख: 2020-03-12 16:39:16किमान स्क्रीन: SMALLसमर्थित सीपीयू:
पॅकेज आयडी: com.mpawer.arduino.WhatsUpArduinoएसएचए१ सही: 8B:F1:72:0F:F3:CD:B0:51:C4:64:04:63:1B:18:FF:69:3C:64:F2:00विकासक (CN): AM POWERसंस्था (O): AMPOWERस्थानिक (L): Mumbaiदेश (C): 91राज्य/शहर (ST): Maharashtra

Arduino Remote Control using Phone Bluetooth. ची नविनोत्तम आवृत्ती

7Trust Icon Versions
12/3/2020
6 डाऊनलोडस2.5 MB साइज
डाऊनलोड

इतर आवृत्त्या

2Trust Icon Versions
20/2/2018
6 डाऊनलोडस3 MB साइज
डाऊनलोड
appcoins-gift
अॅपकॉईन्स खेळअजुन अधिक बक्षिसे मिळवा!
अधिक
The Lord of the Rings: War
The Lord of the Rings: War icon
डाऊनलोड
Marvel Contest of Champions
Marvel Contest of Champions icon
डाऊनलोड
Cooking Diary® Restaurant Game
Cooking Diary® Restaurant Game icon
डाऊनलोड
Matchington Mansion
Matchington Mansion icon
डाऊनलोड
Heroes of War: WW2 army games
Heroes of War: WW2 army games icon
डाऊनलोड
Seekers Notes: Hidden Objects
Seekers Notes: Hidden Objects icon
डाऊनलोड
Magicabin: Witch's Adventure
Magicabin: Witch's Adventure icon
डाऊनलोड
Eternal Evolution
Eternal Evolution icon
डाऊनलोड
Legend of Mushroom
Legend of Mushroom icon
डाऊनलोड
busca palabras: sopa de letras
busca palabras: sopa de letras icon
डाऊनलोड
The Ants: Underground Kingdom
The Ants: Underground Kingdom icon
डाऊनलोड
Cops N Robbers:Pixel Craft Gun
Cops N Robbers:Pixel Craft Gun icon
डाऊनलोड