บทความ

กำลังแสดงโพสต์จาก กรกฎาคม, 2018

Microcontroller8

รูปภาพ
งาน arduino 2 gas sensor gas sensor Alcohol Sensor  เป็นเซนเซอร์วัดระยะที่ใช้วัดปริมาณของ  Alcohol มี Output ให้เลือกใช้งาน ทั้งแบบ Analog และ Digital โดย Output ของแบบ Digital  สามารถกำหนดช่วงการทำงานได้โดยปรับค่าที่ Potentiometer Datasheet   การต่อวงจร Arduino  Alcoho l  sensor 5V VCC  GND GND  pin A0 A0    โค้ดตัวอย่างการใช้งาน int mq3_analogPin = A0; // connected to the output pin of MQ3  void setup() { Serial.begin(9600); // open serial at 9600 bps } void loop() {   // give ample warmup time for readings to stabilize   int mq3_value = analogRead(mq3_analogPin);   Serial.println(mq3_value);   delay(100); //Just here to slow down the output. }

Microcontroller7

รูปภาพ
งาน arduino 4 PIR Detector Module (เชนเซอร์ตรวจจับความเคลื่อนไหว) PIR Detector Module (เชนเซอร์ตรวจจับความเคลื่อนไหว) ตรวจจับความเคลื่อนไหวในระยะ 3-7  เมตร รัศมีการทำงาน 140 องศา สามารถตั้งค่าเวลาในการตรวจจับได้  มีช่องให้ต่อ LDR เพิ่ม เพื่อให้ทำงานเฉพาะกลางคืน Output เป็นแบบ Digital จะส่งลอจิก 0 (ไม่จ่ายไฟ) ออกมาตอนทำงาน ลอจิก 1 (จ่ายไฟ) ตอนไม่ทำงาน Features : Dimension: 3.2cm x 2.4cm x 1.8cm (approx) Infrared sensor with control circuit board The sensitivity and holding time can be adjusted Working Voltage Range: DC 4.5V- 20V Current drain:<60uA Voltage Output: High/Low level signal:3.3V TTL output Detection distance: 3--7M(can be adjusted) Detection range: <140° Delay time: 5-200S(can be adjusted, default 5s +-3%) Blockade time: 2.5 S (default) Trigger: L: Non-repeatable trigger  H: Repeat Trigger (default) Work temperature:-20-+80°C Trigger Method: L unrepeatable trigger / H repeatable trigger การต่อวงจร Arduino PIR sensor 5V VCC GND...

Microcontroller6

เครื่องรดน้ำต้นไม้อัตโนมัติ  โปรเจคเครื่องรดน้ำต้นไม้อัตโนมัติ          โปรเจคเครื่องรดน้ำต้นไม้อัตโนมัติ ด้วย Arduino ชุดรดน้ำอัตโนมัติด้วย Arduino เป็นต้นแบบให้น้องได้ศึกษาระบบ Smart Farm พื้นฐาน นำไปพัฒนาต่อในอนาคต โดยใช้ Arduino Uno R3 สามารถนำไปพัฒนาใน งาน IOT หรือจะพัฒนาใน แอพพลิเคชั่น Blynk ได้อีกด้วย (โปรเจคนี้จะอยู่ที่ประมาณ 500 บาท) อุปกรณ์ที่ต้องใช้มีดังต่อไปนี้ Arduino Uno R3 พร้อมสาย USBModule รีเลย์ relay 1 Chanel 250V/10A Active HIGH IISoil Moisture Sensor Module วัดความชื่นในดินปั๊มน้ำ DC ขนาดเล็กสายยางปั้มน้ำ DC ยาว 1 เมตรAdapter 5V 1A หม้อแปลง 5V 1 แอมป์ IIPower connector 5.5 mm (ตัวเมีย) PCBสายแพร Jumper Male to Female ยาว 20CM จำนวน 10 เส้น ในส่วนของวงจรการต่อสายมีดังต่อไปนี้ ในส่วนของโปรแกรมตัวอย่าง const int analogInPin = A0; const int Relay = 2; int sensorValue = 0;        // ตัวแปรค่า Analog int outputValue = 0;        // ตัวแปรสำหรับ Map เพื่อคิด ...

Microcontroller5

รูปภาพ
โปรเจค 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...