Skip to content

Python package for the qwiic VL53L1X distance sensor (4m)

License

Notifications You must be signed in to change notification settings

sparkfun/Qwiic_VL53L1X_Py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Qwiic_VL53L1X_Py

follow on Twitter

SparkFun Servo pHAT for the Raspberry Pi

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.

Contents

Supported Platforms

The qwiic VL53L1X Python package current supports the following platforms:

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 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.sensor_init()
  
	while True:
	try:
		mySensor.start_ranging()						 # Write configuration bytes to initiate measurement
		time.sleep(.005)
		distance = mySensor.get_distance()	 # Get the result of the measurement from the sensor
		time.sleep(.005)
		mySensor.stop_ranging()

		print("Distance(mm): %s" % distance)

	except Exception as e:
		print(e)

SparkFun - Start Something

About

Python package for the qwiic VL53L1X distance sensor (4m)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages