วันอาทิตย์ที่ 5 สิงหาคม พ.ศ. 2561

ส่งงานครั้งที่8 Arduino Motion Detector using PIR Sensor






Arduino Motion Detector using PIR Sensor


อุปกรณ์ที่ใช้

  1. PIR Sensor Module
  2. Arduino UNO (any version)
  3. LED
  4. Buzzer
  5. Breadboard
  6. Connecting Wires
  7. 330 ohm resistor

code


void setup() {
  pinMode(2, INPUT); //Pin 2 as INPUT
  pinMode(3, OUTPUT); //PIN 3 as OUTPUT
}

void loop() {
  if (digitalRead(2) == HIGH)
  {
  digitalWrite(3, HIGH);   // turn the LED/Buzz ON
  delay(100);                       // wait for 100 msecond 
  digitalWrite(3, LOW);   // turn the LED/Buzz OFF
  delay(100);                       // wait for 100 msecond 
  }
}

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

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