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

หากต้องการดูวิธีใช้แอปนี้ให้คลิก ที่นี่ นี่คือบทแนะนำ กับโครงการตัวอย่าง คุณสามารถใช้ App สำหรับโครงการของคุณเองได้


สำหรับ App นี้ในการทำงานคุณจำเป็นต้องใส่ร่าง Arduino ในอุปกรณ์ Arduino ของคุณ หากต้องการดาวน์โหลด Arduino Sketch ให้คลิก ที่นี่


เรียนรู้คำสั่ง Arduino ต่างๆด้วยการพูดคุยกับ Arduino โปรแกรมและตั้งค่าฟังก์ชัน Arduino Pin โดยการส่งคำสั่งจากระยะไกลโดยไม่ต้องดาวน์โหลดโค้ด


แอปใช้ในการตั้งโปรแกรม (เปลี่ยนการตั้งค่าพิน) ของ Arduino จากระยะไกลโดยใช้บลูทู ธ คุณไม่จำเป็นต้องดาวน์โหลดโปรแกรมเพื่อเปลี่ยนการตั้งค่าพินเช่นโหมดพิน คุณสามารถใช้งานแอปนี้ได้จากระยะไกล


เป็นเครื่องมือที่ยอดเยี่ยมในการเรียนรู้ Arduino ในแบบที่สนุกที่สุดโดยสนทนากับ Arduino


คุณสามารถใช้สเก็ตช์ตัวอย่างได้ที่นี่ ร่างนี้สามารถปรับแต่ง / เปลี่ยนเพื่อให้เหมาะกับความต้องการภาษาและเพิ่มประสบการณ์ของคุณ


[ร่าง Arduino]

/ ****** ร่างสำหรับ App ******* /


#include & lt; SoftwareSerial.h & gt; // นำเข้าไลบรารีแบบอนุกรม


การสนทนา SoftwareSerial (10, 11); // RX, TX


การตั้งค่าเป็นโมฆะ () {

  chat.begin (9600);

}


void loop () {

  if (chat.available ()) {

    สตริง readStr = "";

    readStr = chat.readString ();

    // pinMode

    ถ้า (readStr.startsWith ( "pinMode")) {

      String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

      int pinNo = pin.toInt ();

      โหมดสตริง = readStr.substring (readStr.indexOf (",") + 2, readStr.indexOf (")"));

      ถ้า (โหมด == "INPUT") {

        pinMode (pinNo, INPUT);}

      ถ้า (โหมด == "OUTPUT") {

        pinMode (pinNo, OUTPUT);}

      ถ้า (โหมด == "INPUT_PULLUP") {

        pinMode (pinNo, INPUT_PULLUP);}

      chat.println ( "ทำ");

    }

    // digitalWrite

    ถ้า (readStr.startsWith ( "digitalWrite")) {

      String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

      int pinNo = pin.toInt ();

      ค่าสตริง = readStr.substring (readStr.indexOf (",") + 2, readStr.indexOf (")"));

      ถ้า (ค่า == "HIGH") {

        digitalWrite (pinNo, HIGH);}

      ถ้า (ค่า == "ต่ำ") {

        digitalWrite (pinNo, LOW);}

      chat.println ( "ทำ");

    }

    // digitalRead

    ถ้า (readStr.startsWith ( "digitalRead")) {

      String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

      int pinNo = pin.toInt ();

      int val = digitalRead (pinNo);

      ถ้า (Val == 1) {

      chat.println ("it's HIGH");}

      ถ้า (Val == 0) {

      chat.println ("it's LOW");}

    }

    // analogWrite

    ถ้า (readStr.startsWith ( "analogWrite")) {

      String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

      int pinNo = pin.toInt ();

      สตริง val = readStr.substring (readStr.indexOf (",") + 2, readStr.indexOf (")"));

      ค่า int = val.toInt ();

      if (pinNo == 10 || pinNo == 11) {

        chat.println ("คุณกำลังพยายามเขียนลงบนหมุดที่ใช้โดย RX / TX ของบลูทู ธ "); // การเขียนแบบอะนาล็อก / PWM บนหมุดที่บลูทู ธ ใช้เพื่อขัดจังหวะการสื่อสาร

      }อื่น{

        analogWrite (pinNo ค่า);

        chat.println ( "ทำ");

      }

    }


//โทน

ถ้า (readStr.startsWith ( "เสียง")) {

String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

int pinNo = pin.toInt ();

สตริง frq = readStr.substring (readStr.indexOf (",") + 2, readStr.indexOf (")"));

ความถี่ int = frq.toInt ();

สตริง dur = readStr.substring (readStr.lastIndexOf (",") + 2, readStr.indexOf (")"));

int temp = dur.toInt ();

ระยะเวลาอันยาวนาน = temp * 1000;

if (pinNo == 10 || pinNo == 11) {

chat.println ("คุณกำลังพยายามเขียนลงบนหมุดที่ใช้โดย RX / TX ของบลูทู ธ "); // การเขียนแบบอะนาล็อก / PWM บนหมุดที่บลูทู ธ ใช้เพื่อขัดจังหวะการสื่อสาร

}อื่น{

โทน (pinNo, ความถี่, ระยะเวลา);

chat.println ( "ทำ");

}

}

    // analogRead

    ถ้า (readStr.startsWith ( "analogRead")) {

      String pin = readStr.substring (readStr.indexOf ("(") + 1, readStr.indexOf (","));

      int pinNo = pin.toInt ();

      int val = analogRead (pinNo);

      chat.println ("it" + String (val));

    }

    

  }

  

}

/ ******** ท้ายของร่าง ********** /


Arduino Remote Control using Phone Bluetooth.--เวอร์ชั่น7

(12-03-2020)
เวอร์ชั่นอื่น
ข่าวใหม่*Removed 2 minutes restriction of usage and added ads.*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.

ไม่มีการรีวิวหรือให้คะแนน! ก่อนออกโปรด

-
0 Reviews
5
4
3
2
1
Info Trust Icon
รับประกันแอปดี!แอปนี้ผ่านการทดสอบความปลอดภัยด้านไวรัส มัลแวร์ และสิ่งโจมตีอื่นๆ และไม่มีสิ่งคุกคามใดๆ

Arduino Remote Control using Phone Bluetooth. - ข้อมูล APK

เวอร์ชั่น APK: 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หน้าจอขั้นต่ำ: SMALLCPU ที่รองรับ:
ID ของแพคเกจ: com.mpawer.arduino.WhatsUpArduinoลายเซ็น SHA1: 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
เกมส์ AppCoinsรับรางวัลมากยิ่งขึ้น!
เพิ่มเติม
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 Idle RPG
Heroes of War: WW2 Idle RPG icon
ดาวน์โหลด
Seekers Notes: Hidden Objects
Seekers Notes: Hidden Objects 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
ดาวน์โหลด