Arduino Home automation Application icon

Arduino Home automation 1.1.2

4.4 MB / 10+ Downloads / Rating 4.8 - 59 reviews


See previous versions

Arduino Home automation, developed and published by Dark Brothers, has released its latest version, 1.1.2, on 2020-07-23. This app falls under the Communication category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 4.8, based on 59 reviews.

Arduino Home automation APK available on this page is compatible with all Android devices that meet the required specifications (Android 5.0+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.darkbrothers.automation

Updated: 5 years ago

Developer Name: Dark Brothers

Category: Communication

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino Home automation on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

4.8
Total 59 reviews

Reviews

5 ★, on 2020-07-19
I used previous version of this app.. the new version has a great interface and cool features like it auto reconnect to a new device. I have even purchased it for my home automation project. Thanks a lot uncia robotics.

5 ★, on 2020-07-23
Amazing app for my projects of automation. Simple and good user interface

5 ★, on 2020-06-29
Loved this app,it helped me in my project as well.

5 ★, on 2020-07-24
i was trying to control my room's LED bulb and fan using arduino. So i searched and download atleast 10 apps which were showing in the result. one by one i tested them all. And this one stands out.. with great interface, user experience and documentation. i also checked the website. which is again great.

5 ★, on 2020-07-23
I tried lots of apps for my project. This app met all my requirement . It is versatile simple and you can add as many devices as possible. The interface is really good

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

Previous Versions

Arduino Home automation 1.1.2
2020-07-23 / 4.4 MB / Android 5.0+

About this 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.

New features

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

App 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.