Bluetooth Home Automation 4 Channels Application icon

Bluetooth Home Automation 4 Channels 1.0

8 MB / 0+ Downloads / Rating 1.0 - 1 reviews


See previous versions

Bluetooth Home Automation 4 Channels, developed and published by RahKS, has released its latest version, 1.0, on 2017-11-02. This app falls under the Tools category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 1.0, based on 1 reviews.

Bluetooth Home Automation 4 Channels APK available on this page is compatible with all Android devices that meet the required specifications (Android 1.6+). 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: appinventor.ai_ngurahks.Arduino_Switch_4_Channels_Internal_User_4

Updated: 7 years ago

Developer Name: RahKS

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Bluetooth Home Automation 4 Channels 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

1.0
Total 1 reviews

Previous Versions

Bluetooth Home Automation 4 Channels 1.0
2017-11-02 / 8 MB / Android 1.6+

About this app

This is an app to control home appliances by using 4 channels relay and control it via bluetooth on your smartphone. Include On and Off status. Just plug your Arduino board device and control it easily with this Android application. This app has been tested many times, it's work well. Will work from Android 4.0.4 and above.
Improper hardware/software setup/installation is not my responsibility ! Always check your device connection before running it.

Instructions:
- Upload these codes to your Arduino board then install this application. The codes are described below:

//Koneksi relay 1, 2, 3 & 4 ke PIN 2,3,4 & 5 board Arduino Uno
//Connect your relay line 1, 2, 3 & 4 to PIN 2,3,4 & 5 Arduino's board

const int Relay1 = 2; //PIN 7 FOR RELAY #1
const int Relay2 = 3; //PIN 6 FOR RELAY #2
const int Relay3 = 4; //PIN 5 FOR RELAY #3
const int Relay4 = 5; //PIN 4 FOR RELAY #4
byte serialA;

void setup(){
Serial.begin(9600);
pinMode(Relay1,OUTPUT); //SETTING THE OUTPUT FOR RELAY #1
pinMode(Relay2,OUTPUT); //SETTING THE OUTPUT FOR RELAY #2
pinMode(Relay3,OUTPUT); //SETTING THE OUTPUT FOR RELAY #3
pinMode(Relay4,OUTPUT); //SETTING THE OUTPUT FOR RELAY #4
}

void loop() {
if (Serial.available()>0) {serialA =Serial.read(); Serial.println(serialA);}
switch(serialA){
case 49:
digitalWrite(Relay1, !digitalRead(Relay1));
delay(100);
break;
//if recieving a 49(ascii for 1) turn on Relay #1

case 50:
digitalWrite(Relay2, !digitalRead(Relay2));
delay(100);
break;
//if recieving a 50(ascii for 2) turn on Relay #2

case 51:
digitalWrite(Relay3, !digitalRead(Relay3));
delay(100);
break;
//if recieving a 51(ascii for 3) turn on Relay #3

case 52:
digitalWrite(Relay4,!digitalRead(Relay4));
delay(100);
break;
//if recieving a 52(ascii for 4) turn on Relay #4

case 53:
digitalWrite(Relay1, HIGH);
digitalWrite(Relay2, HIGH);
digitalWrite(Relay3, HIGH);
digitalWrite(Relay4, HIGH);
break;
//if recieving a 53(ascii for 5) turn on ALL Relays

case 54:
digitalWrite(Relay1, LOW);
digitalWrite(Relay2, LOW);
digitalWrite(Relay3, LOW);
digitalWrite(Relay4, LOW);
break;
//if recieving a 54(ascii for 6) turn OFF ALL Relays
}
}

//Notes : Remember to connect line 1, 2, 3 and 4 to PIN 2, 3, 4 & 5 of your Arduino board, otherwise it will not work. Thanks Guys.

New features

Bluetooth Home Automation v1.0

App Permissions

Allows applications to open network sockets.
Allows applications to connect to paired bluetooth devices.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.