Bluetooth Control for Arduino APK

Version 1.1 - dev.merahkemarun.arduinobluetoothrelay4ch
merahkemarun,arduinobluetoothrelay4ch,educational,arduino,bluetooth

APP Information

Download Version 1.1 (1)
Apk Size1.88 MB
App Developermerahkemarun
Malware CheckTRUSTED
Install on Android3.2.x and up
App Packagedev.merahkemarun.arduinobluetoothrelay4ch.apk
MD51db01000fc3a0195dde01c13363b53a0
Rate5

Download Bluetooth Control for Arduino 1.1 APK

Take Control with Bluetooth RC Controller for Android

Experience the Ultimate Power in Your Hands

Are you ready to unleash the power of your Android device? Say hello to Bluetooth RC Controller, the revolutionary app that gives you complete control over your remote-controlled devices. Whether you're a hobbyist, an enthusiast, or just love playing with gadgets, this Android app will take your RC experience to a whole new level.

Ditch the Wires, Embrace Freedom

Tired of dealing with tangled wires and limited mobility? With Bluetooth RC Controller, you can say goodbye to the hassle and embrace the freedom of wireless control. Simply connect your Android device to your remote-controlled device via Bluetooth, and you're good to go. No more limits, no more restrictions – it's time to explore the world of RC like never before.

Effortless User Experience

We understand the importance of an intuitive interface when it comes to controlling your RC devices. That's why Bluetooth RC Controller is designed with simplicity and ease of use in mind. Whether you're a beginner or an experienced user, you can navigate through the app effortlessly and take charge of your devices with just a few taps.

Unlock Limitless Possibilities

Bluetooth RC Controller opens up a world of possibilities for RC enthusiasts. Whether you're controlling a car, a drone, a boat, or any other remotely operated device, this app offers a feature-packed experience. From precise steering controls to adjustable throttle sensitivity, you have the power to fine-tune every aspect of your RC adventure.

Expand Your Horizon

With Bluetooth RC Controller, you're not limited to a single type of RC device. The app is compatible with a wide range of devices, allowing you to control multiple models with a single app. Be it land, air, or water – the power to explore and conquer lies in your hands.

Stay Ahead with Regular Updates

We believe in constantly improving your experience. That's why Bluetooth RC Controller receives regular updates, bringing you new features, enhanced performance, and compatibility with the latest devices. With every update, you can expect a more advanced and captivating RC experience.

Get Bluetooth RC Controller Now

It's time to take control and elevate your RC adventures to new heights. Download Bluetooth RC Controller now and embark on an unforgettable journey filled with excitement, precision, and the thrill of wireless freedom. Get ready to be captivated by the power that lies in the palm of your hand.

App Description

Bluetooth Control for Arduino is merahkemarun,arduinobluetoothrelay4ch,educational,arduino,bluetooth, content rating is Everyone (PEGI-3). This app is rated 5 by 1 users who are using this app. To know more about the company/developer, visit merahkemarun website who developed it. dev.merahkemarun.arduinobluetoothrelay4ch.apk apps can be downloaded and installed on Android 3.2.x and higher Android devices. The Latest Version of 1.1 Available for download. Download the app using your favorite browser and click Install to install the application. Please note that we provide both basic and pure APK files and faster download speeds than APK Mirror. This app APK has been downloaded 1115+ times on store. You can also download dev.merahkemarun.arduinobluetoothrelay4ch APK and run it with the popular Android Emulators.

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 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);

 }

 

}

 

App ChangeLog

App Screens

Bluetooth Control for Arduino App Screen 1Bluetooth Control for Arduino App Screen 2Bluetooth Control for Arduino App Screen 3Bluetooth Control for Arduino App Screen 4Bluetooth Control for Arduino App Screen 5Bluetooth Control for Arduino App Screen 6Bluetooth Control for Arduino App Screen 7Bluetooth Control for Arduino App Screen 8

dev.merahkemarun.arduinobluetoothrelay4ch.apk

Apk scan results


Apk Scaned By TotalVirus Antivirus,dev.merahkemarun.arduinobluetoothrelay4ch.apk Was Pure And Safe.

Scan Stats:harmless:0|type-unsupported:11|suspicious:0|confirmed-timeout:0|timeout:0|failure:0|malicious:0|undetected:63|
Name:dev.merahkemarun.arduinobluetoothrelay4ch.apk
SHA-1:33ec2a0052ac6e641b3e8ba2c761384733deab46
SHA-256:2c0ce7b46f7ad11436ff84ca42330b6b22cc1fab6e744dc099a98c13779e4da4
SSDEEP:49152:7uUIfTQ6Bt8ybtoocioNxX9Opmb9QdBcbkFwVgGEx/:6PQ6BtbpooO/+m6HcbkW2GEV
File type:Android
Magic:Zip archive data, at least v2.0 to extract
File size:1969007
Uncompressed Size:4605159
Contained Files	:140
Contained Files By Type:xml:15,dex:1,MF:1,RSA:1,jpg:1,SF:1,png:119,

Older Versions

More Android Apps to Consider

Google Play Reviews

  1. jamlick wairagu-avatar

    jamlick wairagu

    Works perfectly but it should be more flexible to allow character changes to suit our code lines.

  2. ron tube-avatar

    ron tube

    works well, but would like to be able to change the button values

  3. Erv Adana-avatar

    Erv Adana

    keep crashing..some links are dead

  4. A Google user-avatar

    A Google user

    Some code need to change like... HIGH to LOW. and LOW to HIGH

  5. Milind Sonawane-avatar

    Milind Sonawane

    Best App I have seen and will like to share with friends Actually already shared with friends....................

  6. Jhonleo Hilario-avatar

    Jhonleo Hilario

    why it can't connect in Bluetooth how to connect it

  7. Reza Tadayony-avatar

    Reza Tadayony

    I am using this app with my own hardware.its excellent !

  8. Remy Po-avatar

    Remy Po

    it's working properly

  9. LALIT GOLA-avatar

    LALIT GOLA

    it is very nice and help full app 👌👌👌👍👍

  10. RS KAMATH-avatar

    RS KAMATH

    How to connect Bluetooth ?;