Bluetooth Control for Arduino Apk

Bluetooth Control for Arduino Apk

Latest version 1.1
30 May 2016

Older Versions

Apk Infos

Version1.1
Rating4.2/5, based on 591 votes
Size‎1.9 MB
Requires AndroidAndroid 3.2+ (Honeycomb)
Author's NotesAndroid app to control 4 channel relay modul with Arduino via bluetooth

About Bluetooth Control for Arduino APK

Bluetooth Control for Arduino APK Download for Android
Bluetooth Control for Arduino APK Download for Android

Description

Arduino Bluetooth Relay 4CH App is android application which is used to control 4 channel relay module via Bluetooth with Bluetooth serial communication module support HC-05, HC-06, or HC-07, Using Arduino or AVR

i am test with arduino UNO and serial commnunication library to connected RX pin 10 and TX pin 11.
you can use arduino uno or arduino leonardo etc...

Fitur App:
-control 4 channel on/off ralay
-control All channel ON
-control All channel OFF
-download file Program Arduino_Bluetooth_Ralay_4ch.ino
-download file Tutorial PDF with schemmatic

Download File:
-arduino project ZIP : https://goo.gl/Vq1n9D
-tutorial & schematic wiring PDF : https://goo.gl/b2UVY1

or you can
Copy program here to Arduino IDE

/*
Relay IN1 connected to PinOut 2 Arduino
Relay IN2 connected to PinOut 3 Arduino
Relay IN3 connected to PinOut 4 Arduino
Relay IN4 connected to PinOut 5 Arduino
--->you can connected to relay modul 4 channel

Serial data sending from Arduino Bluetooth Relay 4CH.apk
data '1'-'4' to on is Ralay CH 1-4
data 'A'-'D' to off is Ralay CH 1-4
data '9' to on ALL CH 1-4
data 'I' to off ALL CH 1-4
*/

#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); //Pin10 RX , Pin 11 TX connected to--> Bluetooth TX,RX

#define relay1 2
#define relay2 3
#define relay3 4
#define relay4 5

char val;
void setup() {
pinMode(relay1,OUTPUT);
pinMode(relay2,OUTPUT);
pinMode(relay3,OUTPUT);
pinMode(relay4,OUTPUT);
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
mySerial.begin(9600);
Serial.begin(9600);
}

void loop() {
//cek data serial from bluetooth android App
if( mySerial.available() >0 ) {
val = mySerial.read();
Serial.println(val);
}
//Relay is on
if( val == '1' ) {
digitalWrite(relay1,LOW); }
else if( val == '2' ) {
digitalWrite(relay2,LOW); }
else if( val == '3' ) {
digitalWrite(relay3,LOW); }
else if( val == '4' ) {
digitalWrite(relay4,LOW); }
//relay all on
else if( val == '9' ) {
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
}
//relay is off
else if( val == 'A' ) {
digitalWrite(relay1,HIGH); }
else if( val == 'B' ) {
digitalWrite(relay2,HIGH); }
else if( val == 'C' ) {
digitalWrite(relay3,HIGH); }
else if( val == 'D' ) {
digitalWrite(relay4,HIGH); }
//relay all off
else if( val == 'I' ) {
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
}

}

How to install Bluetooth Control for Arduino APK on Android phone or tablet?

Download Bluetooth Control for Arduino APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (dev.merahkemarun.arduinobluetoothrelay4ch-v1.1-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1.1 (1)1.9 MB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required

User's Reivew

5 ★Thanks for this app its working perfectly on my nano board. It is possible to make it momentary switches? I want to use this in my son's toy car. I dont have idea in programming. Again thank you so much.
5 ★Many Many Thanks For Great App And Tutorial . I done little project Using your hard work Thanks can u plz email me android app code of your base
5 ★First and foremost it's working flawlessly. Tried it with HC-05 and Arduino mega. Connecting with Bluetooth device without any problem. Nice and simple GUI. Altogether great work #
3 ★bagus tapi kadang2 hape saya harus di restart dulu baru bisa konek
1 ★Useless. Didn't find device. Ads all over it. Spelt please wrong in the app as well. Avoid
5 ★lumayan bagus app nya, praktis dan cukup berguna utk kebutuhan smarthome. Lebih keren lg bila button bs dimodifikasi dlm bentuk push selain switch, juga bs rename button tsb.
5 ★Amazing app. Now controlling my lamps from my phone.
5 ★Good job,please remove ads or Upload app .aia file
5 ★Nice and simple. User friendly
4 ★Very helpful app but sometimes makes problem in connection otherwise greatapp. Thank you for this app
5 ★It's simple and works perfectly.. i used it for a project.
5 ★An excellent app. Easy to use and reliable. Ideal for the beginners to understand how HC-05 / HC-06 work.