วันอังคารที่ 14 สิงหาคม พ.ศ. 2561

มินิโปรเจค Arduino เปิดปิดไฟด้วย Bluetooth

อุปกรณ์ในชุด โปรเจค Arduino เปิดปิดไฟบ้านผ่านมือถือ เชื่อมต่อ Bluetooth

Arduino UNO R3 แถมฟรี สายUSB 1 ชิ้นBluetooth Module HC06 1 ชิ้นบอร์ดทดลอง Breadboard 830 Point 1ชิ้นสายไฟจัมเปอร์ ผู้-ผู้ ยาว 20cm. จำนวน 40 เส้น 1 แพรสายไฟจัมเปอร์ ผู้-เมีย ยาว 20cm. จำนวน 40 เส้น 1 แพรสายไฟจัมเปอร์ เมีย-เมีย ยาว 20cm. จำนวน 40 เส้น 1 แพรRelay Module 5V 4 Channel isolation control Relay Module Shield 250V/10A 1 ชิ้นDC male Adapter Jack plug สำหรับ Arduino 2.1 x 5.5 mm 1 ชิ้นสายไฟพร้อมหัวปลั๊ก ขนาด2*0.75 ยาว2m 1 เส้นSwitching Power supply แหล่งจ่ายไฟ 5V 5A 1 ชิ้นElectronics box กล่องอิเล็กทรอนิกส์ ขนาด 200mmx300mmx63mm (กxยxส) 1 ใบ

วิธีการต่อ โปรเจค Arduino เปิดปิดไฟบ้านผ่านมือถือ เชื่อมต่อ Bluetooth

ฺBluetooth Module HC06 -> Arduino

Vcc -> 5V
GND -> GND
Tx -> Pin 2
Rx -> Pin 3

Relay Module -> Arduino
GND -> GND
In 1-> Pin 8
In 2-> Pin 9
In 3-> Pin 10
In 4-> Pin 11

ใช้แหล่งจ่ายไฟ 5v5a เลี้ยง  Relay Module และ Arduino uno r3


ต่อ Bluetooth Module HC06 กับ arduino ตามรูปข้างบน ใช้แหล่งจ่ายไฟ 5V5A เลี้ยงวงจรทั้งหมด ต่อไฟเลี้ยงจาก Arduino โดยตรงไม่ได้ 
อัพโหลด โค๊ด ตัวอย่าง โปรเจค Arduino เปิดปิดไฟบ้านผ่านมือถือ เชื่อมต่อ Bluetooth Module HC06

1

/*

2

 

3

Software serial multple serial test

4

 

5

 

6

Receives from the hardware serial, sends to software serial.

7

 

8

Receives from software serial, sends to hardware serial.

9

 

10

 

11

The circuit:

12

 

13

* RX is digital pin 2 (connect to TX of other device)

14

 

15

* TX is digital pin 3 (connect to RX of other device)

16

 

17

 

18

Note:

19

 

20

Not all pins on the Mega and Mega 2560 support change interrupts,

21

 

22

so only the following can be used for RX:

23

 

24

10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69

25

 

26

 

27

Not all pins on the Leonardo support change interrupts,

28

 

29

so only the following can be used for RX:

30

 

31

8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI).

32

 

33

 

34

created back in the mists of time

35

 

36

modified 25 May 2012

37

 

38

by Tom Igoe

39

 

40

based on Mikal Hart's example

41

 

42

 

43

This example code is in the public domain.

44

 

45

 

46

*/

47

 

48

#include <SoftwareSerial.h>

49

 

50

int i =0;

51

char str[11]={'0','0','0','0','0','0','0','0','0','0','0'};

52

SoftwareSerial mySerial(2, 3); // RX, TX

53

 

54

 

55

void setup()

56

 

57

{

58

pinMode(8, OUTPUT);

59

pinMode(9, OUTPUT);

60

pinMode(10, OUTPUT);

61

pinMode(11, OUTPUT);

62

digitalWrite(8, HIGH);

63

digitalWrite(9, HIGH);

64

digitalWrite(10, HIGH);

65

digitalWrite(11, HIGH);

66

Serial.begin(9600);

67

 

68

while (!Serial) ;

69

 

70

mySerial.begin(9600);

71

 

72

}

73

 

74

 

75

void loop()

76

 

77

{

78

 

79

if (mySerial.available()){

80

//Serial.write(mySerial.read());

81

//Serial.println("ok");

82

i=i+1;

83

str[i]=mySerial.read();

84

//Serial.println(str[i]);

85

if(i ==9)

86

i=0;

87

if(str[5] == '1' && str[7] == '3')

88

digitalWrite(8, LOW);

89

if(str[5] == '1' && str[7] == '2')

90

digitalWrite(8, HIGH);

91

if(str[5] == '2' && str[7] == '3')

92

digitalWrite(9, LOW);

93

if(str[5] == '2' && str[7] == '2')

94

digitalWrite(9, HIGH);

95

if(str[5] == '3' && str[7] == '3')

96

digitalWrite(10, LOW);

97

if(str[5] == '3' && str[7] == '2')

98

digitalWrite(10, HIGH);

99

if(str[5] == '4' && str[7] == '3')

100

digitalWrite(11, LOW);

101

if(str[5] == '4' && str[7] == '2')

102

digitalWrite(11, HIGH);

103

}

104

 

105

 

106

if (Serial.available())

107

 

108

mySerial.write(Serial.read());

109

 

110

}

 

application ในมือถือ ให้โหลด ตามลิ้งด้านล่าง หรือ ใน Play Store application ชื่อ Ardroid

https://play.google.com/store/apps/details?id=com.thechampanurag.arduino

ให้เข้าไปใน application Ardroid  กดปุ่มที่มีรูป 3 จุด ขวาบน แล้วเลือก Bluetooth ที่จะเชื่อมต่อ

ถ้าเชื่อมต่อสำเร็จ ไฟที่กระพริบอยู่บน Bluetooth Module HC06 จะหยุดกระพริบ
เมื่อ กด Pin1 รีเลย์ตัวที่ 1 จะทำงาน ไฟสถานะบน Relay Module ช่องที่ 1 ก็จะติด ตามรูปด้านล่าง

เมื่อ กด Pin1 Pin2 Pin3 Pin4 มือถือจะส่งค่า การกดปุ่ม ผ่าน Bluetooth Module HC06 ส่งมาให้ Arduino UNO R3 ประมวลผล และสั่งงาน รีเลย์ตัวที่ 1 2 3 4 จะทำงาน ไฟสถานะบน Relay Module ช่องที่ 1 2 3 4 ก็จะติด ตามรูปด้านล่าง


การต่อหลอดไฟ 220v ให้ต่อตามรูปข้างล่างนี้ จะเห็นว่า ก่อนที่สั่งงาน Relay หน้าคอนแทค 2 กับ 3 ยังไม่ติดกัน ทำให้ไม่ครบวงจรไฟเลยไม่ติด แต่ถ้าส่งสัญญาณมาสั่งงาน Relay หน้าคอนแทค 2 ที่ติดอยู่กับ หน้าคอนแทค 1 จะโยกมาติดกับ หน้าคอนแทค 3  ไฟไหลครบวงจรไฟจะติด



ไม่มีความคิดเห็น:

แสดงความคิดเห็น