»óÇ°Ä«Å×°í¸® > ¼¾¼­ > ¸ð¼Ç/¿òÁ÷ÀÓ/Á¦½ºÃ³

PIR Àû¿Ü¼± ÀÎü¸ð¼Ç °¨Áö¼¾¼­ / PIR Motion Sensor (JST)
ÆǸŰ¡°Ý : 15,600¿ø (ºÎ°¡¼¼ Æ÷ÇÔ)
»óÇ°ÄÚµå : [7603]ZAS-PTW-SP-PTW-13285-DEL
¹è¼ÛÀÏ : ´çÀϹ߼Û
Á¦Á¶»ç : Sparkfun
ºê·£µå : SparkFun [ºê·£µå¸ô ¹Ù·Î°¡±â]
³²Àº¼ö·® : 4°³
±¸¸Å¼ö·® :
°³
ÃÑ ±Ý¾× :
Ãß°¡&´ë·®±¸¸Å ¿äû 053-588-4080

  • »óÇ°»ó¼¼
  • °ü·Ã»óÇ°
  • ¹è¼Û/±³È¯/¹ÝÇ° ¾È³»
  • »óÇ°¸®ºä
°£´ÜÇÏ°Ô »ç¿ëÇÒ ¼ö ÀÖ´Â ¿òÁ÷ÀÓ/¸ð¼ÇÀÎ½Ä ¼¾¼­ÀÔ´Ï´Ù. µðÁöÅÐ ½ÅÈ£·Î ÀÛµ¿Çϸç, Àû¿Ü¼±ÀÇ º¯È­¸¦ ÅëÇØ ¿òÁ÷ÀÓÀÌ °¨ÁöµÇ¸é
º¯È­µÈ ½ÅÈ£¸¦ Ãâ·ÂÇÕ´Ï´Ù. 


»ç¾ç (Specification) :

  • ÀÛµ¿ Àü¾Ð 5v~12v

  • 3ÇÉ JST ±Ô°Ý Ä¿³ØÅÍ »ç¿ë

  • »¡°£¼± - Àü¿ø

  • Èò»ö¼± - ±×¶ó¿îµå

  • °ËÀº¼± - ½ÅÈ£¼±


±¸¼ºÇ° (Component) :

  • PIR ¸ð¼Ç¼¾¼­ x 1


Âü°íÀÚ·á (noted items) :

  • ¸ÞÄ«¼Ö·ç¼Ç Ä¿¹Â´ÏƼ Mechasolution Blog´Â ¿©·¯°¡Áö Á¤º¸¸¦ Á¦°øÇÕ´Ï´Ù.


PIR sensor hookup


/****************************************************************************** PIR_Motion_Detector_Example.ino Example sketch for SparkFun's PIR Motion Detector (https://www.sparkfun.com/products/13285) Jim Lindblom @ SparkFun Electronics May 2, 2016 The PIR motion sensor has a three-pin JST connector terminating it. Connect the wire colors like this: - Black: D2 - signal output (pulled up internally) - White: GND - Red: 5V Connect an LED to pin 13 (if your Arduino doesn't already have an LED there). Whenever the PIR sensor detects movement, it'll write the alarm pin LOW. Development environment specifics: Arduino 1.6.7 ******************************************************************************/ const int MOTION_PIN = 2; // Pin connected to motion detector const int LED_PIN = 13; // LED pin - active-high void setup() { Serial.begin(9600); // The PIR sensor's output signal is an open-collector, // so a pull-up resistor is required: pinMode(MOTION_PIN, INPUT_PULLUP); pinMode(LED_PIN, OUTPUT); } void loop() { int proximity = digitalRead(MOTION_PIN); if (proximity == LOW) // If the sensor's output goes low, motion is detected { digitalWrite(LED_PIN, HIGH); Serial.println("Motion detected!"); } else { digitalWrite(LED_PIN, LOW); } }


Description: This is a simple to use motion sensor. Power it up and wait 1-2 seconds for the sensor to get a snapshot of the still room. If anything moves after that period, the ¡®alarm¡¯ pin will go low.

This unit works great from 5 to 12V (datasheet shows 12V). You can also install a jumper wire past the 5V regulator on board to make this unit work at 3.3V. Sensor uses 1.6mA@3.3V.

The alarm pin is an open collector meaning you will need a pull up resistor on the alarm pin. The open drain setup allows multiple motion sensors to be connected on a single input pin. If any of the motion sensors go off, the input pin will be pulled low.

We¡¯ve finally updated the connector! Gone is the old ¡°odd¡± connector, now you will find a common 3-pin JST! This makes the PIR Sensor much more accessible for whatever your project may need. Red = Power, White = Ground, and Black = Alarm.

Documents:


¸ÞÄ«¸®¿öÁî






°ßÀû¿äû
±¸¸Å´ëÇà
Äü/¹æ¹®¼ö·É
ÈĺҰáÁ¦
±â¼ú¹®ÀÇ