Our website uses necessary cookies to enable basic functions and optional cookies to help us to enhance your user experience. Learn more about our cookie policy by clicking "Learn More".
Accept All Only Necessary Cookies
Arduino Home automation icon

1.1.2 by Uncia Robotics


Jul 26, 2020

About Arduino Home automation

To control home Appliances through your android phone

Using this app with micro controllers (Arduino, Raspberry Pi, AVR, ARM etc), HC-05 Bluetooth Module and Relay Module you can control your home appliances using your smartphone remotely.

Read documentaion : http://unciarobotics.com/project/home-automation-project-with-arduino-using-hc-05/

The basic Arduino code to read data transmitted over Bluetooth is as follows:

const int relay = 2; //pin where Relay is connected

char data; //variable to store data

void setup() {

Serial.begin(9600); //Begin serial communication

pinMode(relay, OUTPUT); //make relay pin as output

}

void loop() {

if (Serial.available() > 0) //if there is data on RX

{

data = Serial.read(); //save it inside variable

if (data == 'a')

{ digitalWrite(relay, HIGH); //Turn ON the Light

Serial.println("Light ON");

}

if (data == 'b')

{ digitalWrite(relay, LOW); //Turn OFF the Light

Serial.println("Light OFF");

}

}

}

}

}

//Copy Paste this code into Arduino IDE and monitor the data on Serial Monitor.

What's New in the Latest Version 1.1.2

Last updated on Jul 26, 2020

Bug Fixes
Fixed: App crashed in lower platforms like marshmallow and Lolipop

Translation Loading...

Additional APP Information

Latest Version

Request Arduino Home automation Update 1.1.2

Uploaded by

赵浩同

Requires Android

Android 5.0+

Show More

Arduino Home automation Screenshots

Comment Loading...
Languages
Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Subscribed Successfully!
You're now subscribed to APKPure.
Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Success!
You're now subscribed to our newsletter.