【實用通訊app】Arduino Bluetooth Remote|最夯免費app

【實用通訊app】Arduino Bluetooth Remote|最夯免費app

分享好友

【免費通訊App】Arduino Bluetooth Remote-APP點子

Before you download this app, please check the connection between your arduino-Bluetooth and android-Bluetooth first. Search "Bluetooth-SPP" in playstore, it is helpful.

If you are familiar with electronics, please utilize this app for fun!

Testing devices: Samsung Galaxy S2, arduino-uno, HC-06, LED.

How to use it?

1) Turn on Bluetooth (Green circle)

2) Press "FIND" -> "CHECK" -> "PAIR"

3) Search for the corrected device

4) After identification, click "PAIR" again

5) To implement Bluetooth remote, press "On" (send char 'a') or "Off" (send char 'A') button.

6) Close Bluetooth (Yellow circle)

7) Press "Exit"

Hardware connections:

arduino: 5V <-> HC06: Vcc

arduino: GND <-> HC06: GND

arduino: 10(RX) <-> HC06: TX

arduino: 11(TX) <-> HC06: RX

Android 4.0.3 or above

The main arduino program for your DIY device (Reference only)

********************************************************************************************************************

#include"SoftwareSerial.h"

SoftwareSerial Genotronex(10, 11); // RX, TX

int ledpin=13;

char BluetoothData;

void setup()

{

Genotronex.begin(9600);

【免費通訊App】Arduino Bluetooth Remote-APP點子

pinMode(ledpin,OUTPUT);

}

void loop()

{

if (Genotronex.available())

{

BluetoothData=Genotronex.read();

if(BluetoothData=='a')

{

digitalWrite(ledpin,1);

}

if (BluetoothData=='A')

{

digitalWrite(ledpin,0);

}

}

delay(100);

}

【免費通訊App】Arduino Bluetooth Remote-APP點子

********************************************************************************************************************

【免費通訊App】Arduino Bluetooth Remote-APP點子

免費玩Arduino Bluetooth Remote APP玩免費

免費玩Arduino Bluetooth Remote App

Arduino Bluetooth Remote APP LOGO

Arduino Bluetooth Remote LOGO-APP點子

Arduino Bluetooth Remote APP QRCode

Arduino Bluetooth Remote QRCode-APP點子
熱門國家系統支援版本費用APP評分上架日期更新日期
未知Android
Google Play
1.0
App下載
免費
1970-01-012015-03-09