Skip to main content

Introduction

Documentation Status Discord Build Status Code Style: Ruff

CircuitPython driver for the Adafruit TMF8801 Time of Flight Distance Sensor - 20mm to 2.5m

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.

Purchase one from the Adafruit shop

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-tmf8801

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-tmf8801

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install adafruit-circuitpython-tmf8801

Installing to a Connected CircuitPython Device with Circup

Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:

pip3 install circup

With circup installed and your CircuitPython device connected use the following command to install:

circup install adafruit_tmf8801

Or the following command to update an existing version:

circup update

Usage Example

import board
from adafruit_tmf8801 import tmf8801

i2c = board.I2C()

# This uploads about 11.6 kB of firmware to the sensor
sensor = tmf8801.TMF8801(i2c)

print(f"Firmware version: {'.'.join(str(part) for part in sensor.firmware_version)}")
print(f"Serial number: {sensor.serial_number:#06x}")

sensor.start_measuring()

while True:
    if sensor.data_ready:
        distance = sensor.distance
        if distance is not None:
            print(f"Distance: {distance} mm")

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Download files

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

Source Distribution

adafruit_circuitpython_tmf8801-1.0.0.tar.gz (49.3 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file adafruit_circuitpython_tmf8801-1.0.0.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_tmf8801-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d67e21317a844fe0b14a7822ff1a018f4e3a353176d5e0e7ef1865f77b6bd3a8
MD5 768f0b76e7c12fb93ce548be61160ed5
BLAKE2b-256 8f8be7f0c1d32574afab0e10f6f4607a3e19147b8d8d21755ee33d8adf7c9b5e

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_tmf8801-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_tmf8801-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fe59c02dc459207fe47cdd7a3d76853cff9046dc0851b32c57aae112559e6059
MD5 cc45fa10e6efcf6eccc7d9dbb4a69d20
BLAKE2b-256 3d52f44b54561aa01d81b8163e45714c6982c74fc94d92c22e04c9d24e58e375

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 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