Skip to main content

No project description provided

Project description

https://raw.githubusercontent.com/BrianPugh/belay/main/assets/logo_white_400w.png

Python compat PyPi GHA Status Coverage Documentation Status

Belay is:

  • A python library that enables the rapid development of projects that interact with hardware via a MicroPython or CircuitPython compatible board.

  • A command-line tool for developing standalone MicroPython projects.

  • A Poetry-inspired MicroPython package manager.

Belay supports wired serial connections (USB) and wireless connections via WebREPL over WiFi.

Quick Video of Belay in 22 seconds.

See the documentation for usage and other details.

Who is Belay For?

Belay is for people creating a software project that needs to interact with hardware. Examples include:

  • Control a motor so a webcam is always pointing at a person.

  • Turn on an LED when you receive a notification.

  • Read a potentiometer to control system volume.

The Belay Package Manager is for people that want to use public libraries, and get them on-device in an easy, repeatable, dependable manner.

What Problems Does Belay Solve?

Typically, having a python script interact with hardware involves 3 major challenges:

  1. On-device firmware (usually C or MicroPython) for directly handling hardware interactions. Typically this is developed, compiled, and uploaded as a (nearly) independent project.

  2. A program on your computer that performs the tasks specified and interacts with the device.

  3. Computer-to-device communication protocol. How are commands and results transferred? How does the device execute those commands?

This is lot of work if you just want your computer to do something simple like turn on an LED. Belay simplifies all of this by merging steps 1 and 2 into the same codebase, and manages step 3 for you. Code is automatically synced at the beginning of script execution.

The Belay Package Manager makes it easy to cache, update, and deploy third party libraries with your project.

Installation

Belay requires Python >=3.8 and can be installed via:

pip install belay

The MicroPython-compatible board only needs MicroPython installed; no additional preparation is required. If using CircuitPython, and additional modification needs to be made to boot.py. See documentation for details.

Examples

Turning on an LED with Belay takes only 6 lines of code. Functions decorated with the task decorator are sent to the device and interpreted by the MicroPython interpreter. Calling the decorated function on-host sends a command to the device to execute the actual function.

import belay

device = belay.Device("/dev/ttyUSB0")


@device.task
def set_led(state):
    print(f"Printing from device; turning LED to {state}.")
    Pin(25, Pin.OUT).value(state)


set_led(True)

Outputs from print calls from on-device user-code are forwarded to host stdout.

For more examples, see the examples folder.

Performance

Round-trip Communication Latency

Belay provides reasonable communication latency between the host computer and the MicroPython device. You can measure the latency of your setup using the belay latency command:

belay latency /dev/ttyUSB0

Benchmark results on an M3 MacBook Pro with an RP2040 (pi pico) device over USB:

Statistics (10000 samples):
  Min:       3.67 ms
  Max:      11.52 ms
  Average:   4.19 ms
  Median:    4.17 ms
  Std Dev:   0.21 ms

Project details


Download files

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

Source Distribution

belay-0.30.1.tar.gz (94.1 kB view details)

Uploaded Source

Built Distribution

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

belay-0.30.1-py3-none-any.whl (146.1 kB view details)

Uploaded Python 3

File details

Details for the file belay-0.30.1.tar.gz.

File metadata

  • Download URL: belay-0.30.1.tar.gz
  • Upload date:
  • Size: 94.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.12 Linux/6.14.0-1017-azure

File hashes

Hashes for belay-0.30.1.tar.gz
Algorithm Hash digest
SHA256 944c635b7844045267da125f59ad21e7ed3c5fdbb0cd20c0f7624e59309a98e4
MD5 61d719d479ea934cf502bcdad9afe6fd
BLAKE2b-256 dd6b7acc1e9c09f536a585f513472855e489e9b30c21389c23afaba300929100

See more details on using hashes here.

File details

Details for the file belay-0.30.1-py3-none-any.whl.

File metadata

  • Download URL: belay-0.30.1-py3-none-any.whl
  • Upload date:
  • Size: 146.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.12 Linux/6.14.0-1017-azure

File hashes

Hashes for belay-0.30.1-py3-none-any.whl
Algorithm Hash digest
SHA256 022684a3f23450ffd50d6dde31edd25626e936933953678623114cd86c005087
MD5 b36067a4cd1800bac8dc70ccf1540a9e
BLAKE2b-256 98f43de8ef85908a429c46b9a4da8264831425b4dd25d506f1069f0585e9496f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page