IR Obstacle Avoidance Module Arduino Compatible
ARD2-2232
$6.95
QTY | Price |
---|---|
1 | $6.95 |
Description
The Arduino-compatible Infrared Obstacle Avoidance module is widely used in robot obstacle avoidance and more. The sensor is comprised of an infrared transmitter/receiver pair emitting a certain IR frequency to detect obstacles with high precision. The detection range can be set between 2-40cm by adjusting the potentiometers, the detection angle is 35°. The output port OUT sensor module can be directly connected to the microcontroller IO port which you can directly drive a 5V relay. This Infrared Obstacle Avoidance module operating voltage is 3-5V DC.
Test Code
int Led = 13; // define LED Interface
int buttonpin = 3; // define the obstacle avoidance sensor interface
int val; // define numeric variables val
void setup () {
pinMode(Led, OUTPUT); // define LED as output interface
pinMode(buttonpin, INPUT); // define the obstacle avoidance sensor output interface
}
void loop () {
val = digitalRead(buttonpin); // digital interface will be assigned a value of 3 to read val
// When the obstacle avoidance sensor detects a signal, LED flashes
if (val == HIGH) {
digitalWrite(Led, HIGH);
}
else {
digitalWrite(Led, LOW);
}
}
Features
- Detect infrared light
- Applications include home appliances, education etc.
Specifications
Operating Voltage
3.3-5.0V
Operating Current
>20mA
Operating Temperature
-10°C - +50°C
Detection Distance
2-40cm
IO Interface
4-wire interface (GND/+/OUT/EN)
Output Signal
TTL level (low level when obstacle detected, high level when no obstacle detected)
Adjustment
Multi-turn resistance potentiometer
Effective Angle
35°
Weight
9g
Dimensions
Length
42 mm
Width
27 mm
Height
18 mm
Resources
You Might Also Like
All prices are in Australian Dollars and include GST. GST will be removed from your order if you are ordering from outside Australia.
Products may differ from pictured.
All trademarks and trade names are the properties of their respective owners. Wiltronics disclaims any proprietary interest in trademarks and trade names other than its own.