Kendali Relay 2 Chanel Arduino Bluetooth
Install Now
Kendali Relay 2 Chanel Arduino Bluetooth
Kendali Relay 2 Chanel Arduino Bluetooth

Kendali Relay 2 Chanel Arduino Bluetooth

Application to control relay 2 channels with Arduino and Bluetooth HC05

Developer: Agung Hari Wahyudi
App Size: 3.7M
Release Date: May 24, 2019
Price: Free
Price
Free
Size
3.7M

Screenshots for App

Mobile
Wiring Diagram
Arduino dengan Bluetooth HC05
Arduino----------Bluetooth HC05
Tx----------------Rx
Rx----------------Tx
5V----------------5V
GND---------------GND

Arduino dengan Relay 2 Chanel
Arduino---------------Relay
2-----------------Relay 1
3-----------------Relay 2
5V----------------5V
GND---------------GND

Relay menggunakan aktif LOW


Sketch Arduino

int DataBluetooth;

void setup() {
Serial.begin(9600);
pinMode(2,OUTPUT); //Relay 1
pinMode(3,OUTPUT); //Relay 2
digitalWrite(2,HIGH);
digitalWrite(3,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);
}
}
}
Show More
Show Less
More Information about: Kendali Relay 2 Chanel Arduino Bluetooth
Price: Free
Version: 1.0
Downloads: 50
Compatibility: Android 4.0 and up
Bundle Id: com.appybuilder.agunghariwahyudi002.Relay2Chanel
Size: 3.7M
Last Update: May 24, 2019
Content Rating: Everyone
Release Date: May 24, 2019
Content Rating: Everyone
Developer: Agung Hari Wahyudi


Whatsapp
Vkontakte
Telegram
Reddit
Pinterest
Linkedin
Hide