Skip to main content

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.

Frame SDK documentation.

Examples on GitHub.

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.

Download files

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

Source Distribution

brilliant_msg-7.1.0.tar.gz (44.8 kB view details)

Uploaded Source

Built Distribution

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

brilliant_msg-7.1.0-py3-none-any.whl (48.1 kB view details)

Uploaded Python 3

File details

Details for the file brilliant_msg-7.1.0.tar.gz.

File metadata

  • Download URL: brilliant_msg-7.1.0.tar.gz
  • Upload date:
  • Size: 44.8 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

Hashes for brilliant_msg-7.1.0.tar.gz
Algorithm Hash digest
SHA256 b3a0284e9ba3de1a7558223f38074e46b466e7003b87d447b275d94df77f1504
MD5 0bb3f140bbab896ea17cd95b708f0b4b
BLAKE2b-256 33646d5503ca11fcb669ac82ee30f38b6b4c898b683245344850c38f7f682664

See more details on using hashes here.

File details

Details for the file brilliant_msg-7.1.0-py3-none-any.whl.

File metadata

  • Download URL: brilliant_msg-7.1.0-py3-none-any.whl
  • Upload date:
  • Size: 48.1 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

Hashes for brilliant_msg-7.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f97607f12280c88f9d56c4193ce43d2232620b0aba3dc045782a0f33fd31fbbc
MD5 c6f480083e585746615c6e56c8ce837c
BLAKE2b-256 7be65276bc1833dbd54697e0c50ffbbcbf8b373eca778ea178feb5143cd9bb71

See more details on using hashes here.

Release history Release notifications | RSS feed

7.1.1

2 files

This release

7.1.0 This release

2 files

7.0.0

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