Skip to main content

Handles various message types for the Brilliant Labs Frame

Project description

Frame Message Package

A Python package for handling rich application-level messages for the Brilliant Labs Frame, including sprites, text, audio, IMU data, and photos.

Frame SDK documentation.

Examples repo on GitHub.

Installation

pip install frame-msg

Usage

import asyncio
from pathlib import Path

from frame_msg import FrameMsg, 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 = FrameMsg()
    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())

Acknowledgements

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

frame_msg-5.2.1.tar.gz (24.2 kB view details)

Uploaded Source

Built Distribution

frame_msg-5.2.1-py3-none-any.whl (40.3 kB view details)

Uploaded Python 3

File details

Details for the file frame_msg-5.2.1.tar.gz.

File metadata

  • Download URL: frame_msg-5.2.1.tar.gz
  • Upload date:
  • Size: 24.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for frame_msg-5.2.1.tar.gz
Algorithm Hash digest
SHA256 82a746b73d36dd36bfae2d933ac0d897f5e5149a910e3a3e4ab9d42a0af9a172
MD5 70f5131bf94690d3a50294fc6681c175
BLAKE2b-256 272a4e1b1f850ffc4fd94a30917d21a05d794dbe197ff83a2c4093aec91e8bfe

See more details on using hashes here.

File details

Details for the file frame_msg-5.2.1-py3-none-any.whl.

File metadata

  • Download URL: frame_msg-5.2.1-py3-none-any.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for frame_msg-5.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e184f69e50eb6fba40d5a3553df7eb8a19913dc6c9c288b8d5bb0a1e6c98c8d1
MD5 9ac267374ab0e63316484613da544b79
BLAKE2b-256 8ac10e1c476af91f568a3696bdf2a6f5a37a4ec89822ff084c3e35281dc28963

See more details on using hashes here.

Supported by

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