Arduino Home automation 1.1.2 Icon

Arduino Home automation

Uncia Robotics Communication
0
0 Ratings
10K+
Downloads
1.1.2
version
Jul 26, 2020
release date
4.4 MB
file size
Free
Download

What's New

Bug Fixes

Fixed: App crashed in lower platforms like marshmallow and Lolipop

About Arduino Home automation Android App

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.

Other Information:

Requires Android:
Android 5.0+ (Lollipop, API 21)
Other Sources:

Download

This version of Arduino Home automation Android App comes with one universal variant which will work on all the Android devices.

Variant
4
(Jul 26, 2020)
Architecture
Unlimited
Minimum OS
Android 5.0+ (Lollipop, API 21)
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Arduino Home automation Android App, We have 3 versions in our database. Please select one of them below to download.

Loading..