About AALamp Ardudroid
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;"
Download and install
AALamp Ardudroid version 1.0 on your
Android device!
Downloaded 10+ times, content rating: Not rated
Android package:
com.ardudroid.AALamp, download AALamp Ardudroid.apk
by Z####:
I emailed the author. Not working on my S3. The bluetooth connection works fine, but the switch screen display is not active. Then the app stopped working.