โพสต์ยอดนิยมจากบล็อกนี้
Mini Project
ปลดล็อก ประตูด้วย key + Card + แสดงเวลา ปลดล็อก แบบวงจร หลักการทำงานตามความคิด เมื่อกดรหัส และ ตรวจ keycard ผ่าน ประตูจะปลดล็อกและจะแสดงเวลาเข้า ออกมา อุปกรณ์ที่ใช้ 1.Keypad 30 บาท 2.Rc522 120 บาท 3.LCD 140 บาท 4.Arduino ส่วนกลาง 5.Servo 65 บาท รวม 355 บาท ชื่อสมาชิก 1.นาย ชนาธิป คำแหง สมค1 เลขที่ 04 2.นางสาว ไพลิน มัทธุจัด สมค.1 เลขที่ 14
Microcontroller 3
โปรเจค 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...
ความคิดเห็น
แสดงความคิดเห็น