Skip to main content

vl53l1x-python

Python library for the VL53L1X Laser Ranger.

https://shop.pimoroni.com/products/vl53l1x-breakout

Installing

pip install vl53l1x

On Raspberry Pi OS Bookworm and newer the system Python is marked externally managed. Either install into a virtual environment:

python3 -m venv --system-site-packages ~/.virtualenvs/vl53l1x
source ~/.virtualenvs/vl53l1x/bin/activate
pip install vl53l1x

or override the check:

sudo pip install --break-system-packages vl53l1x

Dependencies

At runtime the library needs smbus2, which pip installs for you. I2C must be enabled, via sudo raspi-config under "Interface Options".

If there's no wheel for your platform, pip builds from source and you'll need a compiler:

sudo apt install build-essential python3-dev

Usage

import VL53L1X

# Open and start the VL53L1X sensor.
# If you've previously used change-address.py then you
# should use the new i2c address here.
# If you're using a software i2c bus (ie: HyperPixel4) then
# you should `ls /dev/i2c-*` and use the relevant bus number.
tof = VL53L1X.VL53L1X(i2c_bus=1, i2c_address=0x29)
tof.open()

# Optionally set an explicit timing budget
# These values are measurement time in microseconds,
# and inter-measurement time in milliseconds.
# If you uncomment the line below to set a budget you
# should use `tof.start_ranging(0)`
# tof.set_timing(66000, 70)

tof.start_ranging(1)  # Start ranging
                      # 0 = Unchanged
                      # 1 = Short Range
                      # 2 = Medium Range
                      # 3 = Long Range

# Grab the range in mm, this function will block until
# a reading is returned. A rejected measurement gives -1,
# and tof.get_range_status_string() says why.
distance_in_mm = tof.get_distance()

tof.stop_ranging()

See examples for more advanced usage.

Building from source

git clone https://github.com/pimoroni/vl53l1x-python
cd vl53l1x-python
pip install .

Using the library from C

make            # builds libvl53l1x.so
make examples   # builds examples/distance
./examples/distance

libvl53l1x.so exposes the functions declared in python_lib/vl53l1x_python.h. It has no I2C transport of its own. Before calling initialise() you must hand it read, write and multiplexer callbacks with VL53L1_set_i2c(), declared in api/platform/vl53l1_platform.h. Skipping this is what produces i2c bus read not set. and i2c bus write not set. at runtime. examples/distance.c shows a complete set of callbacks driving /dev/i2c-1 through ioctl(I2C_RDWR).

Compiling against the library outside this source tree:

cc -Ipath/to/api/core -Ipath/to/api/platform -Ipath/to/python_lib \
   -o distance distance.c -Lpath/to/vl53l1x-python -lvl53l1x

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vl53l1x-0.0.7.tar.gz (195.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

vl53l1x-0.0.7-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (159.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (152.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (159.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (152.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

vl53l1x-0.0.7-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (157.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

vl53l1x-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

File details

Details for the file vl53l1x-0.0.7.tar.gz.

File metadata

  • Download URL: vl53l1x-0.0.7.tar.gz
  • Upload date:
  • Size: 195.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vl53l1x-0.0.7.tar.gz
Algorithm Hash digest
SHA256 efdbab2a1519227551442d0d42a848cedb5857c91d00301a7d670c88b12872e1
MD5 d96b214d3ea83f1f69330ef2a450d629
BLAKE2b-256 3adc9807a154b53f50be98d52ba43006d25e2556f3220b3625500505d88c9266

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7.tar.gz:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b2099a82259cffd16e632320994c1e76a7f3cdaf92e8aecd8599edfbc424d4e
MD5 fb22e33518ff4f93f080befeb6b98ce8
BLAKE2b-256 5dab055029ca5077eba04f95b564669f172871b6ca9a1c7160c653a433bfebf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b50f00761cff1f69e99e752accbb01431a80212b3608dd30793e080b973259f
MD5 d5cc986e15d7c40df6b889f974cf5764
BLAKE2b-256 473a0ff2902ea927563bd79e5f3a729f3eef94f4664591f343ea4a16db8d45e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e3df7cb3fe0acdfb526d89e291e09cfeb757ff91e68d643ff5b010d5f6ff7215
MD5 b334649c6759c0c10b8a9f7f73303630
BLAKE2b-256 4e70716c41db67bbdef434e3bcb4ca57de5eed435702bec6722df4759239f858

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22fba3b3fe65251d56847c5b60f01e432f1179744ff9d43605a2599c3a64f97c
MD5 c524f2da25f79bde8909e2fe3097386b
BLAKE2b-256 f8b4f2c7ab9cf122f2660317b097b1a7a050fd90cafab30784d3cfe4efa83559

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0da31d47302ad935d52e55b4972f8d136105446c6e25cbce6c58b605b4c9b62c
MD5 b267c2fa6c52bfec372831cb3f843270
BLAKE2b-256 ec3f0e15025a7a0dfbcbfbc093a8ed9ede5813b9233d6dd94e71cac3306454ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c242144dc3240b8a01e3101aa0c674cc65ba96e4b4b36e702157b45d7bc7909
MD5 94713c920fc0c3f3201443109bc7d7bb
BLAKE2b-256 603f00f843c9b2c2a1720f1f8a768722b82545876b623bef05723b1904fac1b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 373b1edb9227f5c5376f5ef6d3d4aac0606bc19407d6d8d88d3f963e53f283f2
MD5 50d13ba26607b1353b5b2eca30071173
BLAKE2b-256 8518833ebc570d1f6812c360766c7fd10bd237ff1a441366c6694af6dceaf9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afddc99a6d227ace74691542abe1c0ed7e8cafb83ed17b5d87cd602e21fec1ea
MD5 3dc1474dc02878d032352417c953d2ed
BLAKE2b-256 f7ea66ef3544ff884219e6af0bc24aa435f706bfdeef4fa5bb9c60804821353c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0865f9de26fd65d3524bfe302bf240680c8ee79ade9c9ba19515458f0c0114c9
MD5 12a2718d51e2a714fddd161251f25df5
BLAKE2b-256 4be8fb75812ee68bc00e749f6c255895b657df37ca14c20a7075f0b1fe2ef61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 335fd1da981e242fda29ca31c3b1b24f8f67326801ea45798d9acd80f5ef30f1
MD5 2dbcf4b76035f3b16aa20f772a840678
BLAKE2b-256 e8eadfc9784e05f751ff057cd76b71bbf76a450021f328c2d76cb5ae04832a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ad7b6d5ccfe2b4ac790c527cf6f9fc99b6aea1b5ee150565f1814ac3df2309b2
MD5 0e08b733106203c9ddcf7c5cfbd6c165
BLAKE2b-256 c676ea52d6aae3a1df113b18576a222a4fb7088f87cf85dd8a948bb2553dbc58

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7adb897102632f3bf80c75bc4890e0ed98d65191ffa57facabdb96f12390ece
MD5 6c543bc5e0de0db6eda6b03a616f1a85
BLAKE2b-256 ae7d1a2787af8deb94de74c03392a80bb61c15c2165427b28cc477320cf8e28e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2fcc6bb56685d591243aef261821c229e32a6aae9c0ab1f7aea49e329278fbd9
MD5 0153dbc90c1118046db2f7380e4fef25
BLAKE2b-256 7b41ae5cde9b9f91116f4fe0eaa2abbb9114a5b7009bd2fb617747a4a95dec94

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73a3c606448d9a74b328165c871e79545efac4e9d7ee5daedcababe9d58c9fad
MD5 94aa9da177bfeeaff47d912ae1169b3b
BLAKE2b-256 9fbdec8cc8a2df8ef61e39db48db03e820e829f02d932699bb3e9be34465bd69

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a4bc5730ec69c19a86240cbee551f4989e349446adb27917fa0768da4c2af2b5
MD5 584e3745f59a8dd849deace43cb318fe
BLAKE2b-256 3b7cd969527b0b3f63b1575dca1e55cbf69c5f6e70918dc49d65442a60bdf336

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 395f7d0250398f493edaf732de8df1b46ce2dff69a0493328255c84e9adbd11e
MD5 dc41e9f9d3188b2f0ccaac8bb617e7b7
BLAKE2b-256 8e2d86be058e4e040a0f0ad2cdd5daae775ce2338875941d5ee9f9016a9de7b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b4d5de62ee2e444f7de6cdc43f84a1ea674d2f3532d40b97fed8793ac6610bf5
MD5 b94d29f0f8b3248517b4ce0a84dfb59e
BLAKE2b-256 19df993e1e7699a247fff9845c1ab5166368053948e860172b5de601d688311a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vl53l1x-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vl53l1x-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdc49233ab6e4ca2915c8ed991c2dbcec54215fd570ea42e63f2aaa6752978e9
MD5 8645ced3eecf0c0686ad1965da642dc5
BLAKE2b-256 2a84582579cae64786072d0b92272c11ea5c7649cde33c1444380b88354fe65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vl53l1x-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pimoroni/vl53l1x-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.0.7 This release

19 files

0.0.6

1 file

0.0.5

4 files

0.0.4

3 files

0.0.3

3 files

0.0.2

6 files

0.0.1

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page