โปรเจค Arduino ง่ายๆ เปิด ปิดไฟด้วยเสียง อุปกรณ์หลัก - Arduino UNO R3 - Relay 1 Channel DC 5V Module - Sound Detection Sensor Module LM393 - LED Lighting Wiring diagram Upload โค้ดนี้ ไปยัง บอร์ด Arduino UNO R3 int sound_sensor = 4; int relay = 5; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() { pinMode(sound_sensor, INPUT); pinMode(relay, OUTPUT); } void loop() { int status_sensor = digitalRead(sound_sensor); if (status_sensor == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && milli...
ความคิดเห็น
แสดงความคิดเห็น