openmv/scripts/examples/09-OpenMV-Boards/08-Distance-Shield/distance_read.py
2023-07-05 19:03:37 +02:00

11 lines
178 B
Python

from machine import I2C
from vl53l1x import VL53L1X
import time
i2c = I2C(2)
distance = VL53L1X(i2c)
while True:
print("range: mm ", distance.read())
time.sleep_ms(50)