Home Page

Arduino-Android HomeAutomation 1.0 - Get Apk




About Arduino-Android HomeAutomation

A mimimalistic demo app of Voice Controlled Home Appliances using Arduino. The source code for Arduino and Android app will be made available on my blog http://anwaarullah.com soon. If you need any help in building the...

A mimimalistic demo app of Voice Controlled Home Appliances using Arduino. The source code for Arduino and Android app will be made available on my blog http://anwaarullah.com soon.

If you need any help in building the Circuit, please email me at [email protected]

Basic Setup:

1. Connect a Bluetooth Module to the Arduino Serial Port
2. Connect 3 Loads (or LEDs for testing) to Pins 8,9 and 10
3. Upload the Arduino Code below
4. Open the App and establish a connection with the Bluetooth Module
5. Select the Appropriate buttons and the LEDs/Load should lit up accordingly

The following pins are connected to the Buttons on the App:

Yellow Lamp = Digital Pin 8 of Arduino
Fan = Digital Pin 9 of Arduino
Red Lamp = Digital Pin 10 of Arduino

To give in voice commands, hit the mic button and say in any of these commands:

"red lamp on"
"red lamp off"
"fan on"
"fan off"
"yellow lamp on"
"yellow lamp off"

I've attached a sample schematic that can be used for reference in connecting.

To see a demo of this application, please visit this video http://vimeo.com/53071330 and navigate to 20:00 on the video. This was a talk where I made this App for a demo.


#### Arduino Source Code ####

char ch = 'A';

int lamp1 = 8;
int lamp2 = 9;
int lamp3 = 10;


void setup()
{
Serial.begin(9600);

pinMode(lamp1, OUTPUT);
pinMode(lamp2, OUTPUT);
pinMode(lamp3, OUTPUT);

digitalWrite(lamp1, LOW);
digitalWrite(lamp2, LOW);
digitalWrite(lamp3, LOW);
}

void loop()
{

{
ch = Serial.read();

if (ch == '1') {
digitalWrite(lamp1, HIGH);
}
if (ch == '2') {
digitalWrite(lamp2, HIGH);
}
if (ch == '3') {
digitalWrite(lamp3, HIGH);
}
if (ch == '4') {
digitalWrite(lamp1, LOW);
}
if (ch == '5') {
digitalWrite(lamp2, LOW);
}
if (ch == '6') {
digitalWrite(lamp3, LOW);
}
}
delay(500);
ch = 'A';
}

Note: Please be careful while handling high voltage loads. Take all necessary precautions while building the circuit. I'm not responsible for any damage whatever, in any way whatsoever arising out of the use of this App (Physical or Material).



Previous Versions

Here you can find the changelog of Arduino-Android HomeAutomation since it was posted on our website on 2016-10-04 02:24:48. The latest version is 1.0 and it was updated on 2024-03-29 11:37:47. See below the changes in each version.

Arduino-Android HomeAutomation version 1.0
Updated At: 2014-09-26


Related Apps

Here you can find apps that are similar with Arduino-Android HomeAutomation.



Disclaimer

External Download


We do not host Arduino-Android HomeAutomation on our servers. We did not scan it for viruses, adware, spyware or other type of malware. This app is hosted by Galad and passed their terms and conditions to be listed there. We recommend caution when installing it.

The APK Download link for Arduino-Android HomeAutomation is provided to you by apps112.com without any warranties, representations or guarantees of any kind, so access it at your own risk.

If you have questions regarding this particular app contact the publisher directly. For questions about the functionalities of apps112.com contact us.

BarCode2D-PNG


Click stars to rate this APP!

Users Rating:  
  0.0/5     0
Downloads: 5
Updated At: 2024-03-29 11:37:47
Publisher: Syed Anwaarullah
Operating System: Android
License Type: Free