India
  • Global
  • México
  • 中國台灣
  • India
  • Indonesia
  • Türkiye
  • Việt Nam
  • ประเทศไทย
  • Brasil
  • Perú
  • Colombia
  • Argentina
  • Россия
  • السعودية
  • مصر
  • پاکستان
  • Malaysia
  • 日本
  • 中国香港
  • Philippines
डाउनलोड
Arduino Remote Control using Phone Bluetooth.

Arduino Remote Control using Phone Bluetooth. for PC

4.2Version: 7

ampower

डाउनलोड

GameLoop एमुलेटर के साथ पीसी पर Arduino Remote Control using Phone Bluetooth. डाउनलोड करें

पीसी पर Arduino Remote Control using Phone Bluetooth.

Arduino Remote Control using Phone Bluetooth., डेवलपर ampower से आ रहा है, अतीत में Android सिस्टर्म पर चल रहा है।

अब, आप Arduino Remote Control using Phone Bluetooth. को पीसी पर GameLoop के साथ आसानी से खेल सकते हैं।

इसे GameLoop लाइब्रेरी या खोज परिणामों में डाउनलोड करें। अब और गलत समय पर बैटरी या निराशाजनक कॉलों पर ध्यान नहीं देना चाहिए।

बस मुफ्त में बड़ी स्क्रीन पर Arduino Remote Control using Phone Bluetooth. पीसी का आनंद लें!

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

और दिखाओ

पूर्वावलोकन

  • gallery
  • gallery

जानकारी

  • डेवलपर

    ampower

  • नवीनतम संस्करण

    7

  • आखरी अपडेट

    2018-11-27

  • श्रेणी

    शिक्षा

  • पर उपलब्ध

    Google Play

और दिखाओ

पीसी पर गेमलूप के साथ Arduino Remote Control using Phone Bluetooth. कैसे खेलें

1. आधिकारिक वेबसाइट से GameLoop डाउनलोड करें, फिर GameLoop को स्थापित करने के लिए exe फ़ाइल चलाएँ।

2. गेमलूप खोलें और "Arduino Remote Control using Phone Bluetooth." खोजें, खोज परिणामों में Arduino Remote Control using Phone Bluetooth. खोजें और "इंस्टॉल करें" पर क्लिक करें।

3. GameLoop पर Arduino Remote Control using Phone Bluetooth. खेलने का आनंद लें।

Arduino Remote Control using Phone Bluetooth.

डाउनलोड

Minimum requirements

OS

Windows 8.1 64-bit or Windows 10 64-bit

GPU

GTX 1050

CPU

i3-8300

Memory

8GB RAM

Storage

1GB available space

Recommended requirements

OS

Windows 8.1 64-bit or Windows 10 64-bit

GPU

GTX 1050

CPU

i3-9320

Memory

16GB RAM

Storage

1GB available space

अधिक समान ऐप्स

सभी देखें

अधिक समान ऐप्स

सभी देखें

प्रासंगिक समाचार

सभी देखें

ampower के और ऐप्स

सभी देखें

ampower के और ऐप्स

सभी देखें
स्थापित करने के लिए क्लिक करो