Handles various message types for Brilliant Labs Frame and Halo devices
Project description
Brilliant Message Package
A Python package for handling rich application-level messages for Brilliant Labs Frame and Halo devices, including sprites, text, audio, IMU data, and photos.
Installation
uv add brilliant-msg
Usage
import asyncio
from pathlib import Path
from brilliant_msg import BrilliantMsg, TxSprite
async def main():
"""
Displays sample images on the Frame display.
The images are indexed (palette) PNG images, in 2, 4, and 16 colors (that is, 1-, 2- and 4-bits-per-pixel).
"""
frame = BrilliantMsg()
try:
await frame.connect()
# Let the user know we're starting
await frame.print_short_text('Loading...')
# send the std lua files to Frame that handle data accumulation and sprite parsing
await frame.upload_stdlua_libs(lib_names=['data', 'sprite'])
# Send the main lua application from this project to Frame that will run the app
await frame.upload_frame_app(local_filename="lua/sprite_frame_app.lua")
# attach the print response handler so we can see stdout from Frame Lua print() statements
frame.attach_print_response_handler()
# "require" the main frame_app lua file to run it, and block until it has started.
await frame.start_frame_app()
# send the 1-bit image to Frame in chunks
sprite = TxSprite.from_indexed_png_bytes(Path("images/logo_1bit.png").read_bytes())
await frame.send_message(0x20, sprite.pack())
# send a 2-bit image
sprite = TxSprite.from_indexed_png_bytes(Path("images/street_2bit.png").read_bytes())
await frame.send_message(0x20, sprite.pack())
# send a 4-bit image
sprite = TxSprite.from_indexed_png_bytes(Path("images/hotdog_4bit.png").read_bytes())
await frame.send_message(0x20, sprite.pack())
await asyncio.sleep(5.0)
# unhook the print handler
frame.detach_print_response_handler()
# break out of the frame app loop and reboot Frame
await frame.stop_frame_app()
except Exception as e:
print(f"An error occurred: {e}")
finally:
# clean disconnection
await frame.disconnect()
if __name__ == "__main__":
asyncio.run(main())
Running Tests
From the workspace root:
cd python
uv sync --all-packages --extra tests
uv run pytest packages/brilliant_msg/tests/
The test suite covers all Tx message packing (TxCode, TxPlainText, TxSpriteCoords, TxCaptureSettings, TxAutoExpSettings, TxSprite bit-packing and factory methods, TxImageSpriteBlock, TxTextSpriteBlock) and Rx message parsing (RxAudio WAV conversion, RxMeteringData, RxAutoExpResult, RxIMU including IMUData pitch/roll and SensorBuffer smoothing, RxTap, and BrilliantMsg handler dispatch). No hardware is required.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file brilliant_msg-7.0.0.tar.gz.
File metadata
- Download URL: brilliant_msg-7.0.0.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fedb7c3148f8da4893a8eaf01613f63a79d2e995309934e8b1d67c92cbbf085e
|
|
| MD5 |
31c8a5f78bbd401d637e0ffb706832eb
|
|
| BLAKE2b-256 |
7ec2339fb21e00c8041c725fdbbab3456eb7e77b8ae1ce1426aa0fd314eb376b
|
File details
Details for the file brilliant_msg-7.0.0-py3-none-any.whl.
File metadata
- Download URL: brilliant_msg-7.0.0-py3-none-any.whl
- Upload date:
- Size: 40.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fff3bdedd025ad0a3d8786c87232cd02065a095c19b221b2021ef1f89ab79e6
|
|
| MD5 |
00dd8ffbf506d4bae3884d350d5514fe
|
|
| BLAKE2b-256 |
9d26e033cabaa76ff0e09de64932b706a618173693d0305fd2b9405985fc8a25
|