English
English
简体中文
日本語

Unit ToF ESPHome Component

The Unit ToF component reads non-contact distance data using a laser ranging sensor.

1. Component Overview

Item Information
Product Name Unit ToF
SKU U010
Main Function Laser distance measurement
Communication Interface I2C
Default I2C Address 0x29
ESPHome Component vl53l0x
ESPHome Version Requirement /

2. Component Description

Including the Official Component

VL53L0X Distance Sensor

Unit ToF uses the vl53l0x component to read distance. Set update_interval to configure the update interval and enable long-range mode with long_range.

sensor:
  - platform: vl53l0x
    name: "Unit ToF Distance"
    address: 0x29
    update_interval: 60s
    long_range: true

3. Reference Example

yaml
1 2 3 4 5 6 7 8 9 10 11
i2c:
  sda: GPIOXX
  scl: GPIOXX
  scan: true

sensor:
  - platform: vl53l0x
    name: "VL53L0x Distance"
    address: 0x29
    update_interval: 60s
    long_range: true
Page Tools
PDF
On This Page