สอบแก้
Arduino Home Bluetooth Hardware MCU = Arduino UNO R3 OUTPUT = relay 4 ch, หลอดไฟ 4 ดวง INPUT = HC - 05 Bluetooh Module Software code #include <SoftwareSerial.h> //การเรียกใช้ไรบรารี้ const int rxPin = 4; //กำหนด rxPin = 4 const int txPin = 2; //กำหนด txPin = 2 SoftwareSerial mySerial(rxPin, txPin); //กำหนดขาของ RX และ TX const int Loads[] = {9, 10, 11, 12}; //กำหนดตัวแปลแบบอะเลย์ int state = 0; //กำหนด state = 0 int flag = 0; ...