ส่งงานไมโครคอนโทรนเลอร์ 6

Infrared Proximity Sensor เป็นเซนเซอร์วัดระยะที่ใช้หลักการสะท้อนของคลื่นอินฟาเรด สามารถกำหนดระยะในการทำงานได้โดยปรับค่าที่ Potentiometer ทำงานในช่วง 3-80 CM ใช้ไฟเลี้ยง 5VDC Output เป็น Digital 
Arduino infared proximity switch module is a reflection-type photoelectric sensor which integrates transmitting and receiving infared beams function. Infrared proximity switches work by sending out beams of invisible infrared light. A photodetector on the proximity switch detects any reflections of this light. These reflections allow infrared proximity switches to determine whether there is an object nearby.
The trigger distance can be anywhere between 30 - 800mm, by manual adjustment of the potentiometer in the sensor.
Specification:
  • Output : Digital
  • Voltage :DC 5V
  • Current  :100mA
  • Type :DC 3 Wire NPN-NO (Normal Open)
  • Sensory Distance: 3-80 cm adjustable (Yellow: Signal)
  • Sensory distance regulator and output indicator light on product back
  • Ambient temperature: -25 - 70 degree C
  • Guard mode: reverse polarity protection
  • Sensor dimension: 18mm diameter x 45mm length
Control signal level:
  • High:2.3V≤Vin≤5V
  • Low:-0.3V≤Vin≤1.5V

การต่อวงจร
Arduino sensor
5VVCC (แดง)
GNDGND (เขียว)
pin 2A0 (เหลือง)
โค้ดตัวอย่างการใช้งาน
int ledPin = 13; //LED anode connected to digital pin 13
int inputPin = 2; //infrared proximity switch connected to digital pin 2
int val = 0; //this variable will read the value from the sensor
void setup() 
{
pinMode(ledPin, OUTPUT); //declare LED as output
pinMode(inputPin, INPUT); //declare infrared sensor as input
}
void loop()
{
val = digitalRead(inputPin); // read input value
if (val == HIGH)  //check if the input is HIGH
{
digitalWrite(ledPin, LOW); //LED is off
}
else
{
digitalWrite(ledPin, HIGH); //LED is turned on
}
}




แหล่งที่มา : https://www.arduinothai.com/product/192/infrared-proximity-sensor-%E0%B9%80%E0%B8%8B%E0%B8%99%E0%B9%80%E0%B8%8B%E0%B8%AD%E0%B8%A3%E0%B9%8C%E0%B8%A7%E0%B8%B1%E0%B8%94%E0%B8%A3%E0%B8%B0%E0%B8%A2%E0%B8%B0

ความคิดเห็น