Qwiic_VL53L1X_Py¶
Python module for the SparkFun Distance Sensor Breakout - 4 Meter, VL53L1X (Qwiic).
This package should be used in conjunction with the overall SparkFun qwiic Python Package. New to qwiic? Take a look at the entire SparkFun qwiic ecosystem.
Supported Platforms¶
The qwiic VL53L1X Python package current supports the following platforms:
Raspberry Pi <!– Platforms to be tested
Dependencies¶
This package depends on the qwiic I2C driver: Qwiic_I2C_Py
Documentation¶
The SparkFun qwiic VL53L1X module documentation is hosted at ReadTheDocs
Installation¶
PyPi Installation¶
This repository is hosted on PyPi as the sparkfun-qwiic-VL53L1X package. On systems that support PyPi installation via pip, this library is installed using the following commands
For all users (note: the user must have sudo privileges):
sudo pip install sparkfun-qwiic-VL53L1X
For the current user:
pip install sparkfun-qwiic-VL53L1X
Local Installation¶
To install, make sure the setuptools package is installed on the system.
Direct installation at the command line:
python setup.py install
To build a package for use with pip:
python setup.py sdist
A package file is built and placed in a subdirectory called dist. This package file can be installed using pip.
cd dist
pip install sparkfun_qwiic_VL53L1X-<version>.tar.gz
Example Use¶
See the examples directory for more detailed use examples.
import qwiic_VL53L1X
import time
import math
import sys
def runExample():
print("\nSparkFun VL53L1X Example 1\n")
mySensor = qwiic_VL53L1X.QwiicVL53L1X()
if mySensor.isConnected() == False:
print("The Qwiic VL53L1X device isn't connected to the system. Please check your connection", \
file=sys.stderr)
return
mySensor.SensorInit()
while True:
try:
ToF.StartRanging() # Write configuration bytes to initiate measurement
time.sleep(.005)
distance = ToF.GetDistance() # Get the result of the measurement from the sensor
time.sleep(.005)
ToF.StopRanging()
print("Distance(mm): %s" % distance)
except Exception as e:
print(e)