首页 > 器件类别 > 传感器

SEN0245

GRAVITY VL53L0X TOF LASER RANGE

器件类别:传感器   

厂商名称:DFRobot

器件标准:

下载文档
SEN0245 在线购买

供应商:

器件:SEN0245

价格:-

最低购买:-

库存:点击查看

点击购买

器件参数
参数名称
属性值
感应距离
1.18" ~ 78.74"(3 ~ 200cm)
输出类型
I²C
电压 - 电源
3.3 V ~ 5.5 V
工作温度
-20°C ~ 70°C(TA)
文档预览
Gravity: VL53L0X ToF Laser Range
Finder
SKU:SEN0245
The VL53L0X range finder is a high-precision distance finder that based on new Time-of-Flight (ToF)
principle. VL53L0X provides accurate distance measurement whatever the target reflectance unlike
traditional technology. It can measure absolute distances up to 2m.
DFRobot has introduced VL53L0X into Gravity Series. It provides Gravity-I2C interface, plug and
play, supports 3.3V~5V power supply, and is compatible with more microcontrollers, and adapt to
more application scenarios than others.
The VL53L0X integrates a leading-edge SPAD array (Single Photon Avalanche Diodes) and embeds
ST’s second generation FlightSenseTM patented technology. Its accuracy is ±3%, response time is
less than 30ms, power consumption is only 20mW in normal operation mode, stand-by power
consumption is 5uA.
The VL53L0X's 940nm VCSEL emitter (vertical cavity surface emitting laser) is totally invisible to the
human eye, coupled with internal physical infrared filters, it enables longer ranging distance, higher
immunity to ambient light and better robustness to cover-glass optical cross-talk.
Specification
Power supply: 3.3-5V DC
Operating Voltage: 2.8V
Infrared emitter: 940nm
Range: 30-2000mm
FOV: 25°
Ranging Accuracy: ±3%
Sampling Time: <= 30ms
Operating Temperature: -20-70 °C
Interface Type: Gravity-I2C
Product Size: 0.79*0.87 in
Pin Description
Pin Description
Label
1 green line
2 blue line
3 black line
4 red line
Name
D
C
-
+
Description
DATA
CLK
GND
VCC
GPIO1: interrupt output pin to indicate if the data is ready
XSHUT: Close the pin of the sensor, pulled high by default, sensor enters off mode when pin is
pulled low
Tutorial
Requirements
Hardware
Arduino UNO control board x1.
VL53L0X Distance detection Sensor module
Software
Arduino IDE,
Click to Download Arduino IDE from Arduino®
Connection Diagram
Connection diagram
Sample Code
/*!
* @file DFRobot_VL53L0X.ino
* @brief DFRobot's Laser rangefinder library
* @n The example shows the usage of VL53L0X in a simple way.
* @copyright
* @copyright
[DFRobot](http://www.dfrobot.com), 2016
GNU Lesser General Public License
* @author [LiXin]
* @version
* @date
V1.0
2017-8-21
* @https://github.com/DFRobot/DFRobot_VL53L0X
timer*/
#include "Arduino.h"
#include "Wire.h"
#include "DFRobot_VL53L0X.h"
/*****************Keywords instruction*****************/
//Continuous--->Continuous measurement model
//Single------->Single measurement mode
//High--------->Accuracy of 0.25 mm
//Low---------->Accuracy of 1 mm
/*****************Function instruction*****************/
//setMode(ModeState mode, PrecisionState precision)
//*This function is used to set the VL53L0X mode
//*mode: Set measurement mode
//*precision: Set the precision
//void start()
//*This function is used to enabled VL53L0X
//float getDistance()
//*This function is used to get the distance
//uint16_t getAmbientCount()
Continuous or Single
High or Low
//*This function is used to get the ambient count
//uint16_t getSignalCount()
//*This function is used to get the signal count
//uint8_t getStatus();
//*This function is used to get the status
//void stop()
//*This function is used to stop measuring
DFRobotVL53L0X sensor;
void setup() {
//initialize serial communication at 115200 bits per second:
Serial.begin(115200);
//join i2c bus (address optional for master)
Wire.begin();
//Set I2C sub-device address
sensor.begin(0x50);
//Set to Back-to-back mode and high precision mode
sensor.setMode(Continuous,High);
//Laser rangefinder begins to work
sensor.start();
}
void loop()
{
//Get the distance
Serial.print("Distance: ");Serial.println(sensor.getDistance());
//The delay is added to demonstrate the effect, and if you do not add the d
elay,
//it will not affect the measurement accuracy
delay(500);
}
查看更多>
热门器件
热门资源推荐
器件捷径:
S0 S1 S2 S3 S4 S5 S6 S7 S8 S9 SA SB SC SD SE SF SG SH SI SJ SK SL SM SN SO SP SQ SR SS ST SU SV SW SX SY SZ T0 T1 T2 T3 T4 T5 T6 T7 T8 T9 TA TB TC TD TE TF TG TH TI TJ TK TL TM TN TO TP TQ TR TS TT TU TV TW TX TY TZ U0 U1 U2 U3 U4 U6 U7 U8 UA UB UC UD UE UF UG UH UI UJ UK UL UM UN UP UQ UR US UT UU UV UW UX UZ V0 V1 V2 V3 V4 V5 V6 V7 V8 V9 VA VB VC VD VE VF VG VH VI VJ VK VL VM VN VO VP VQ VR VS VT VU VV VW VX VY VZ W0 W1 W2 W3 W4 W5 W6 W7 W8 W9 WA WB WC WD WE WF WG WH WI WJ WK WL WM WN WO WP WR WS WT WU WV WW WY X0 X1 X2 X3 X4 X5 X7 X8 X9 XA XB XC XD XE XF XG XH XK XL XM XN XO XP XQ XR XS XT XU XV XW XX XY XZ Y0 Y1 Y2 Y4 Y5 Y6 Y9 YA YB YC YD YE YF YG YH YK YL YM YN YP YQ YR YS YT YX Z0 Z1 Z2 Z3 Z4 Z5 Z6 Z8 ZA ZB ZC ZD ZE ZF ZG ZH ZJ ZL ZM ZN ZP ZR ZS ZT ZU ZV ZW ZX ZY
需要登录后才可以下载。
登录取消