面向VL53L4CD渡越时间传感器的超低功耗(ULP)应用编程接口(API) 获取软件 产品概述 描述 为了实现尽可能低的功耗,ULP驱动器有效地使VL53L4CD传感器成为接近探测器。这是通过渡越时间(ToF)技术实现的。在这种情况下,传感器的设置和测距流程经过专门设计,以减少功耗。例如,使用2V8电源时,在1 Hz的测距频率下,电流消耗...
/* USER CODE BEGIN Includes */ #include "vl53l4cd_api.h" // VL53L4CD 传感器 API #include "custom_ranging_sensor.h" // 自定义测距传感器头文件 /* USER CODE END Includes */ 变量定义 /* USER CODE BEGIN 0 */ int status;// 存储操作状态 volatile int IntCount;// 中断计数器 uint8_t ...
Arduino library to support the VL53L4CD Time-of-Flight ranging sensor. API This sensor uses I2C to communicate. And I2C instance is required to access to the sensor. The APIs provide simple distance measure in both polling and interrupt modes. Examples There are 2 examples with the VL53L4CD...