Kendali Relay 4 Chanel Arduino Application icon

Kendali Relay 4 Chanel Arduino 1.0

4.5 MB / 1+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Kendali Relay 4 Chanel Arduino, developed and published by Agung Hari Wahyudi, has released its latest version, 1.0, on 2019-05-11. This app falls under the Tools category on the Google Play Store and has achieved over 50 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Kendali Relay 4 Chanel Arduino APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.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.appybuilder.agunghariwahyudi002.Saklar

Updated: 6 years ago

Developer Name: Agung Hari Wahyudi

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Kendali Relay 4 Chanel Arduino 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.

Previous Versions

Kendali Relay 4 Chanel Arduino 1.0
2019-05-11 / 4.5 MB / Android 4.0+

About this app

Relay Aktif Low

Wiring Diagram

Arduino dengan Bluetooth HC05
Arduino----------Bluetooth HC05
Tx----------------Rx
Rx----------------Tx
5V----------------5V
GND---------------GND

Arduino dengan Relay 4 Chanel
Arduino---------------Relay
2-----------------Relay 1
3-----------------Relay 2
4-----------------Relay 3
5-----------------Relay 4

Sketh Arduino

int DataBluetooth;

void setup() {
Serial.begin(9600);
pinMode(2,OUTPUT); //Relay 1
pinMode(3,OUTPUT); //Relay 2
pinMode(4,OUTPUT); //Relay 3
pinMode(5,OUTPUT); //Relay 4
digitalWrite(2,HIGH);
digitalWrite(3,HIGH);
digitalWrite(4,HIGH);
digitalWrite(5,HIGH);
}

void loop() {
if (Serial.available()){
DataBluetooth=Serial.read();

// Menyalakan Relay 1
if(DataBluetooth=='A'){
digitalWrite(2,LOW);
}

//Mematikan Relay 1
if(DataBluetooth=='B'){
digitalWrite(2,HIGH);
}

// Menyalakan Relay 2
if(DataBluetooth=='C'){
digitalWrite(3,LOW);
}

//Mematikan Relay 2
if(DataBluetooth=='D'){
digitalWrite(3,HIGH);
}

// Menyalakan Relay 3
if(DataBluetooth=='D'){
digitalWrite(4,LOW);
}

//Mematikan Relay 3
if(DataBluetooth=='E'){
digitalWrite(4,HIGH);
}

// Menyalakan Relay 4
if(DataBluetooth=='F'){
digitalWrite(5,LOW);
}

//Mematikan Relay 4
if(DataBluetooth=='G'){
digitalWrite(5,HIGH);
}
}
}

New features

Kendali Relay 4 Chanel Arduino

App Permissions

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