The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.Uses Infrared (IR) beam interruption to detect objects that move through the U-shaped detector uprights.
The Light Block Sensor Module uses Infrared (IR) to detect objects that move through the U-shaped detector uprights.
The module has an IR transmitter and receiver pair that face each other across a U-shaped housing. An object moving between these uprights breaks the IR beam.
This is a basic module that can be used in applications which use an interruption in a light beam to detect something. One application includes mounting the sensor where a spinning wheel travels through the U-Channel. Cogs or gaps in the edge of the wheel can be detected to calculate RPM, speed or movement. It can also be used to detect if something is open or closed if a a piece of the object moves in and out of the channel when it is opened or closed.\
The output of the module is normally LOW. When an object blocks the light from crossing this housing, the output goes HIGH.
The module has a 3 pin header for making connections.
1 x 3 Header
These are easy to use modules. Just hook up power, ground and connect the sensor output pin to a digital input pin on an MCU to monitor it.
If you want a little more capable sensor of this type with larger uprights and a comparator output, check out the Infrared Counting Sensor Module below.
Our example program below monitors the sensor and lights the on-board LED when the sensor is blocked.
We have the sensor pin hooked to pin 8, but can be set to work with any digital input pin.
/* Light Interrupter Sensor Test Monitor output from sensor module and light the on-board LED when an object is blocking the IR beam between the sensor uprights. */ int sensorPin = 8; // Can be any digital input pin int ledPin = 13; // Pin that on-board LED is connected to int sensorVal = 0; // variable to store the value coming from the sensor //=============================================================================== // Initialization //=============================================================================== void setup() { pinMode(ledPin, OUTPUT); // LED pin as output pinMode(sensorPin, INPUT); //Sensor pin as input } //=============================================================================== // Main //=============================================================================== void loop() { sensorVal = digitalRead(sensorPin); //read the value of the sensor if(sensorVal == HIGH) // turn on LED when sensor is blocked { digitalWrite(ledPin,HIGH); } else { digitalWrite(ledPin,LOW); } }
Notes:
Operating Ratings | Vcc Range | 3.3 or 5V |
Logic high | > 4.8V (when used with 5V) | |
Logic Low | < 0.2V | |
Dimensions | L x W (PCB) | 19 x 16mm (0.75 x 0.6″) |
Country of Origin | China |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!