Pololu VL53L0X Laser Range Sensor, Range 2m
This sensor is a carrier/breakout board for ST’s VL53L0X laser-ranging sensor, which measures the range to a target object up to 2 m away. The VL53L0X uses time-of-flight measurements of infrared pulses for ranging, allowing it to give accurate results independent of the target’s color and surface. Distance measurements can be read through a digital I²C interface. The board has a 2.8 V linear regulator and integrated level-shifters that allow it to work over an input voltage range of 2.6 V to 5.5 V
Quick Spec
- Resolution: 1mm
- Maximum range: 2m
- Interface: I²C
- Minimum operating voltage: 2.6 V
- Maximum operating voltage: 5.5 V
- Supply current: 10mA
- Dimensions: 13 mm × 18 mm × 2 mm
- Weight: 0.5g
Pinouts
The VL53L0 uses ST’s FlightSense technology to precisely measure how long it takes for emitted pulses of infrared laser light to reach the nearest object and be reflected back to a detector, so it can be considered a tiny, self-contained lidar system.
Sample Code
/* This example shows how to use continuous mode to take
range measurements with the VL6180X. It is based on
vl53l0x_ContinuousRanging_Example.c from the VL53L0X API.
The range readings are in units of mm. */
#include <Wire.h>
#include <VL53L0X.h>
VL53L0X sensor;
void setup()
{
Serial.begin(9600);
Wire.begin();
sensor.init();
sensor.setTimeout(500);
// Start continuous back-to-back mode (take readings as
// fast as possible). To use continuous timed mode
// instead, provide a desired inter-measurement period in
// ms (e.g. sensor.startContinuous(100)).
sensor.startContinuous();
}
void loop()
{
Serial.print(sensor.readRangeContinuousMillimeters());
if (sensor.timeoutOccurred()) { Serial.print(" TIMEOUT"); }
Serial.println();
}
Resources
- Product Page
- Arduino Library
- Circuit Diagram
- NXP’s I²C-bus specification
- More resources for Arduino and Raspberry Pi
Shipping List
- 1 X Laser Range Sensor 2m
Pololu VL53L0X Laser Range Sensor, Range 2m
- Brand: Pololu Electronics
- Product Code: 2490
- Weight: 0.003kg
- Product Status : Active
Stock
| Warehouse | Stock Status | Location |
|---|---|---|
| Centurion | No Stock | |
| Stellenbosch | No Stock |
We ship free of charge between branches to complete your order.
-
R257.00 (Inc Tax: R295.55)
Related Products
Laser M18 Kit - 20M Range
Laser M18 Kit - 20M Range The threaded design most commonly used for laser sensors in automation technology is the type OG with M18 housing. The robust stainless steel housing enables the reliable de..
R268.00 (Inc Tax: R308.20)
RPLIDAR A1M8 Laser Scanner Dev Kit
RPLIDAR A1M8 Laser Scanner Dev Kit RPLIDAR A1 is a low cost 360 degree 2D laser scanner (LIDAR) solution developed by SLAMTEC. The system can perform 360 degree scan within 12-meter range (6-meter ra..
R2,038.00 (Inc Tax: R2,343.70)
Benewake TF-LUNA Industrial Lidar Range Sensor 0.2-8m
Benewake TF-LUNA Industrial Lidar Range Sensor 0.2-8m TF-Luna is based on TOF, namely, Time of Flight principle. To be specific, the product emits modulation wave of near infrared ray on a periodic..
R580.00 (Inc Tax: R667.00)
Pololu VL53L7CX Time-of-Flight Sensor - 8x8 Zone
Pololu VL53L7CX Time-of-Flight Sensor - 8x8 Zone This sensor is a carrier/breakout board for ST’s VL53L7CX laser-ranging sensor, which offers fast and accurate ranging up to 3.5m through a digital ..
R335.00 (Inc Tax: R385.25)
Pololu VL53L4CD Time-of-Flight Distance Sensor
Pololu VL53L4CD Time-of-Flight Distance Sensor This Pololu VL53L4CD Time-of-Flight Distance Sensor module is a compact breakout board designed for ST’s VL53L4CD laser-ranging sensor. With a range o..
R254.00 (Inc Tax: R292.10)
Tags: time of flight, tof, laser range sensor, 2m






