Infrared obstacle avoidance sensor module
Infrared obstacle avoidance sensor is designed for the design of a wheeled robot obstacle avoidance sensor distance adjustable. This ambient light sensor Adaptable, high precision, having a pair of infrared transmitter and receiver, transmitter tubes emit a certain frequency of infrared, When detecting the direction of an obstacle (reflector), the infrared receiver tube receiver is reflected back, when the indicator is lit, Through the circuit, the signal output interface output digital signal that can be detected by means of potentiometer knob to adjust the distance, the effective distance From 2 ~ 40cm, working voltage of 3.3V-5V, operating oltage range as broad, relatively large fluctuations in the power supply voltage of the situation Stable condition and still work for a variety of microcontrollers, Arduino controller, BS2 controller, attached to the robot that
Can sense changes in their surroundings.
Here we use the obstacle avoidance module and a digital interface, built-in 13 LED build a simple circuit, making avoidance warning lamp, the obstacle avoidance Sensor Access Digital 3 interface, when obstacle avoidance sensor senses a signal, LED light, and vice versa off.
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 if ( val == HIGH) // When the obstacle avoidance sensor detects a signal, LED flashes { digitalWrite ( Led, HIGH) ; } else { digitalWrite ( Led, LOW) ; } }
Your email address will not be published. Required fields are marked *
Please login to write review!
Looks like there are no reviews yet.