Fast delivery within 24 to 72 Hours
Ultimate VL53L0X Laser Distance Sensor Module – Black Version | High-Accuracy ToF Range Finder
Original price was: 300,00 EGP.270,00 EGPCurrent price is: 270,00 EGP.
In stock
- Time-of-Flight (ToF) laser distance measurement for high accuracy
- Range: ~30mm to 2000mm with millimeter precision
- 940nm Class 1 IR laser – eye-safe and reliable in varying light conditions
- Fast response with low power consumption (~20mW)
- I²C interface for easy microcontroller integration
- Compact black PCB for easy mounting in projects
In stock
Shipping & Delivery
Receipt from the place on the same day or shipping to nearby places
On the same day
6PM - 10 PM
Delivery through a fast shipping company intermediary
1-3 Days
Description
The VL53L0X Laser Distance Sensor Module – Black Version is a high-accuracy Time-of-Flight (ToF) ranging sensor capable of measuring absolute distances up to 2 meters with millimeter precision. Unlike traditional infrared sensors, the VL53L0X uses a Class 1 940nm laser emitter to deliver reliable readings even in changing lighting conditions.
This Black Version features an upgraded PCB design for enhanced stability, better compatibility, and sleek integration into robotics, automation, and measurement projects.
Key Features
-
Time-of-Flight (ToF) laser technology for superior accuracy
-
Measurement range: 30mm to 2000mm
-
High-speed measurement with rapid response time
-
Eye-safe 940nm Class 1 IR laser
-
Simple I²C digital interface for easy microcontroller integration
-
Compact black PCB for space-saving designs
-
Low power consumption for battery-powered projects
Specifications
-
Sensor Model: VL53L0X
-
Measurement Range: ~30mm – 2000mm (environment dependent)
-
Operating Voltage: 2.6V – 5V
-
Interface: I²C (up to 400kHz)
-
Field of View: ~25°
-
Light Source: 940nm invisible laser (Class 1)
-
Power Consumption: ~20mW active
-
Dimensions: ~20 × 12 × 3 mm
-
Operating Temperature: –20°C to +70°C
Applications
-
Robotics obstacle detection and avoidance
-
Drone altitude control
-
Precision distance measuring tools
-
Object detection and proximity sensing
-
Smart home automation systems
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
/* ----------------------------------------------------------- Copyright (c) 2025 Ekostra Electronics Store - ekostra.com All Rights Reserved. ----------------------------------------------------------- Library: Adafruit VL53L0X Library GitHub: https://github.com/adafruit/Adafruit_VL53L0X ----------------------------------------------------------- Wiring (VL53L0X → Arduino UNO): ------------------------------ VL53L0X Pin → Arduino Pin -------------------------------- VIN (2.6–5V) → 5V GND → GND SDA → A4 (I2C Data) SCL → A5 (I2C Clock) XSHUT → Not connected (optional shutdown control) Note: - Use 4.7kΩ pull-up resistors on SDA & SCL if not already present on the module. - I2C address default: 0x29 */ #include "Adafruit_VL53L0X.h" Adafruit_VL53L0X lox = Adafruit_VL53L0X(); void setup() { Serial.begin(115200); while (! Serial) { delay(1); } Serial.println("Adafruit VL53L0X test"); if (!lox.begin()) { Serial.println(F("Failed to boot VL53L0X")); while (1); } Serial.println(F("VL53L0X API Simple Ranging example\n\n")); } void loop() { VL53L0X_RangingMeasurementData_t measure; Serial.print("Reading a measurement... "); lox.rangingTest(&measure, false); // pass in 'true' to get debug data printout! if (measure.RangeStatus != 4) { // phase failures have incorrect data Serial.print("Distance (mm): "); Serial.println(measure.RangeMilliMeter); } else { Serial.println(" out of range "); } delay(100); } |
Customer Reviews
Specification
Overview
Weight Weight | 2 g |
---|---|
![]() |
20 × 10 × 4 mm |
Specification
Type: |
Time-of-Flight (ToF) laser distance sensor |
---|---|
Range: |
30 mm – 2000 mm (best indoors <1200 mm) |
Accuracy: |
±3% |
Resolution: |
1 mm |
Light Source: |
Class 1 940 nm VCSEL |
Interface: |
I²C (0x29) |
Current: |
~20 mA active, <5 µA standby |
Voltage: |
2.6 – 5.5 V |
FoV: |
~25° |