AALamp is an app made to turn on or off your lamp switch through arduino board by Bluetooth.
How to use:
Arduino Code:
void setup()
{
pinMode(13, OUTPUT);
Serial.begin(9600);
}
void loop()
{
int n;
n = Serial.read();
if(n == '1')
{
digitalWrite(13, HIGH);
}
if(n == '0')
{
digitalWrite(13,LOW);
}
}
AAlamp Config
1 -> Enable your Bluetooth;
2 -> Configure what do you wish to send by Bluetooth:
2.1 -> Options > Config:
2.2 -> Write in 'Turn ON' : 1
2.3 -> Write in 'Turn OFF' : 0
3 -> Home > Start;
4 -> Choose one device and click;
5 -> Touch on screen for turn on and turn off;"
免費玩AALamp Ardudroid APP玩免費
免費玩AALamp Ardudroid App
熱門國家 | 系統支援 | 版本 | 費用 | APP評分 | 上架日期 | 更新日期 |
---|---|---|---|---|---|---|
未知 | Android Google Play | 1.0 App下載 | USD$0.99 | 1970-01-01 | 2015-03-13 |