ApkDownload

Arduino Home automation APK

Latest Version 1.1.2 for Windows
Updated 2020-07-23

App information

Version 1.1.2 (#4)

Updated 2020-07-23

APK Size 4.4 MB

Requires Android Android 5.0+ (Lollipop)

Offered by Dark Brothers

Category Free Communication App

App id com.darkbrothers.automation

Developer's notes To control home Appliances through your android phone

Screenshot

Click on the image to see full size

Latest updates

What's new in Arduino Home automation 1.1.2

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

Editor's review

Download the latest Arduino Home automation application, version 1.1.2, compatible with Windows 10/11 (using emulators such as Bluestacks), Android devices. This free Communication app is developed by Dark Brothers and is easy to download and install.

Previous versions, including 1.1.2, are also available. If you need help or have any problems, please let us know.

Description

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.

App permissions

Arduino Home automation 1.1.2 APK requires following permissions:

Allows applications to connect to paired bluetooth devices.

Allows applications to discover and pair bluetooth devices.

Allows applications to open network sockets.

Allows an application to write to external storage.

Allows applications to access information about networks.

Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming.

Allows an application to read from external storage.

Ratings and Reviews

Rating: 4.8/5 based on Less than 100 reviews

(*) is required

5 ★ Great app, please add feature like when it connect to bluetooth it must make some alert or music or some short indication music

5 ★ i am using it for controlling room appliances using my android device. Thanks for the proper documentation.

5 ★ Beautiful app 👍 beautifully design please make some short cut on screen button for fast usage

2 ★ Not getting connected to Bluetooth module but show's Ur already connected... Otherwise it was the best app for use but communication problem

4 ★ Thanks for helping. Now it's working Device's icons are limited , please add options to add icons manually.

5 ★ Nice app But one more addition is there it should be connected through wifi And must have generate coding for installing in adruino

5 ★ great app. Easily connect with HC 05 blutooth. 😎

5 ★ Working on the project .. came to know about this app from the website .. after following documentation .. it's working ...

5 ★ Awesome 🤩 very useful app

5 ★ one of the best app for automation

5 ★ Amazing & simple

5 ★ Nice app, very usefull

5 ★ It was Awesome...

5 ★ Nice app

5 ★ The app is really helpful, although it is a small thing, but we all know how small things troubles the most.. and this app take cares of all those troubles for us... Grt work guys keep going...👌

Previous versions

Arduino Home automation 1.1.2 APK for Windows (#4, 4.4 MB)