Wish List 0

Gy 53 Vl53L0X Laser Tof Flight Time Ranging Sensor Module

Rs. 650.00 Rs. 780.00

-GY-53 VL53L0X Laser ToF Flight Time Ranging Sensor Module can be used for easy integration into your gadgets and primary gesture detection packages.
-Thanks to its 2.8V regulator and degree shifters, the VL53L0X satellite tv for pc board may be used in any utility with a 2.Eight to 5V deliver.

-The VL53L0X is a Time of Flight distance sensor like no different you’ve used! The sensor includes a very tiny invisible laser supply and an identical sensor.
-The VL53L0X can hit upon the “time of flight”, or how lengthy the mild has taken to bounce back to the sensor.
-Since it makes use of a very narrow light source, it is right for figuring out the space of simplest the surface without delay in the front of it.

-Unlike sonars that leap ultrasonic waves, the ‘cone’ of feel could be very slender.
-Unlike IR distance sensors that try to measure the amount of light bounced, the VL53L0x is an awful lot greater precise and doesn’t have linearity issues or ‘double imaging’ wherein you could’t tell if an object is very a ways or very close.

-The PCB phase supporting the VL53L0X module is perforated in order that builders can spoil off the mini PCB for use in a 2.8V supply application the use of flying leads.
-This makes it easier to integrate into development and evaluation gadgets because of its small shape component.

-The module is designed for low-electricity operation.
-Ranging measurements can be automatically completed at consumer-defined periods.
-Multiple thresholds and interrupt schemes are supported to minimize host operations.
-Serial port and PWM to read the information code: STM32, Arduino, 51 MCU.

Note: Due to the infrared will be affected by the out of doors light, within the light will affect the most variety of dimension, will not have an effect on the size accuracy. Default configuration: serial baud rate 9600, automated output, high precision mode. When using, please put off the sensor film.


Features:
1. VL53L0X 3-in-1 ranging and gesture detection sensor
2. Regulator: 5 to 2.8V range input voltage (output voltage: 2.8V)
3. VL53L0X signal interface level shifter
4. Serial Port PWM Output
5. True distance measurement independent of target size and reflectance
6. Able to function in multi-module applications
7. Small size mini-PCB
8. Breakout board, easy to integrate into the customer device
9. Allows basic gesture recognition use case.




SPECIFICATIONS:
Module type           GY-53
Use chip              VL53L0X + STM32
Power supply          3-5v (low dropout voltage regulator)
Range                 2 meters (dark, long distance mode)
Communication mode    Serial output, PWM output, the chip itself IIC output.

OVERVIEW:

-VL53L0X 3-in-1 ranging and gesture detection sensor

-Regulator: 5 to 2.8V range input voltage (output voltage: 2.8V)

-VL53L0X signal interface level shifter

-Serial Port PWM Output

-True distance measurement independent of target size and reflectance

-Breakout board, easy to integrate into the customer device

-Allows basic gesture recognition use case.


PACKAGE INCLUDES:

1 PCS x Gy 53 Vl53L0X Laser Tof Flight Time Ranging Sensor Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/helloanimesh390/arduino-distance-finder-vl53l0x-sensor-arduino-ba8f8c

// Subscribe to The Screwdriver https://youtu.be/9Wx2u1zRPDs 

//The range readings are in units of mm. */


#include <Wire.h>

#include <VL53L0X.h>


VL53L0X sensor;



// Uncomment this line to use long range mode. This

// increases the sensitivity of the sensor and extends its

// potential range, but increases the likelihood of getting

// an inaccurate reading because of reflections from objects

// other than the intended target. It works best in dark

// conditions.


//#define LONG_RANGE



// Uncomment ONE of these two lines to get

// - higher speed at the cost of lower accuracy OR

// - higher accuracy at the cost of lower speed


//#define HIGH_SPEED

//#define HIGH_ACCURACY



void setup()

{

  Serial.begin(9600);

  Wire.begin();


  sensor.init();

  sensor.setTimeout(500);


#if defined LONG_RANGE

  // lower the return signal rate limit (default is 0.25 MCPS)

  sensor.setSignalRateLimit(0.1);

  // increase laser pulse periods (defaults are 14 and 10 PCLKs)

  sensor.setVcselPulsePeriod(VL53L0X::VcselPeriodPreRange, 18);

  sensor.setVcselPulsePeriod(VL53L0X::VcselPeriodFinalRange, 14);

#endif


#if defined HIGH_SPEED

  // reduce timing budget to 20 ms (default is about 33 ms)

  sensor.setMeasurementTimingBudget(20000);

#elif defined HIGH_ACCURACY

  // increase timing budget to 200 ms

  sensor.setMeasurementTimingBudget(200000);

#endif

}


void loop()

{

  Serial.print(sensor.readRangeSingleMillimeters());

  if (sensor.timeoutOccurred()) { Serial.print(" TIMEOUT"); }


  Serial.println();

}

https://youtu.be/7dJKJUmfQ1A


https://youtu.be/aurxggBiVOk

15 days

Write a review

Please login or register to review