Before you download this app, please check the connection between your arduino-Bluetooth and android-Bluetooth first. Search "Bluetooth-SPP" in playstore if you have any problems.
Speech remote command: English
Testing devices: Samsung Galaxy S2, arduino-uno, HC-06, servo motor.
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 speech remote, press the blue circle at the middle.
6) Say something. Internet service is a must.
7) After you have finished the speech remote, close Bluetooth (Yellow circle)
8) Press "Exit"
Android 4.0.3 or above
The main arduino program for your DIY device (Reference only)
********************************************************************************************************************
#include
#include
SoftwareSerial Genotronex(10, 11); // RX, TX
char BluetoothData;
Servo myservo;
void setup()
{
Genotronex.begin(9600);
myservo.attach(9);
myservo.write(90);
}
void loop()
{
if (Genotronex.available())
{
BluetoothData=Genotronex.read();
if(BluetoothData=='l') // if you say "left", read one character 'l' only
{
myservo.write(170);
}
if (BluetoothData=='r') // if you say "right", read one character 'r' only
{
myservo.write(10);
}
}
delay(100);
}
********************************************************************************************************************
免費玩Bluetooth Speech Remote APP玩免費
免費玩Bluetooth Speech Remote App
熱門國家 | 系統支援 | 版本 | 費用 | APP評分 | 上架日期 | 更新日期 |
---|---|---|---|---|---|---|
未知 | Android Google Play | 1.0 App下載 | 免費 | 1970-01-01 | 2015-04-09 |