速報APP / 工具 / Kendali Relay 2 Chanel Arduino Bluetooth

Kendali Relay 2 Chanel Arduino Bluetooth

價格:免費

更新日期:2019-05-25

檔案大小:3.7M

目前版本:1.0

版本需求:Android 4.0 以上版本

官方網站:mailto:agunghariwahyudi002@gmail.com

Kendali Relay 2 Chanel Arduino Bluetooth(圖1)-速報App

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

Kendali Relay 2 Chanel Arduino Bluetooth(圖2)-速報App

}

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

}

}

Kendali Relay 2 Chanel Arduino Bluetooth(圖3)-速報App

}

Kendali Relay 2 Chanel Arduino Bluetooth(圖4)-速報App