jumperless-mcp 0.1.0

MCP server for the Jumperless V5 — persistent USB-serial bridge exposing the firmware API to LLMs
# /python_scripts/lib/jumperless_mcp/font.py — pixel font for Jumperless MCP overlay text rendering.
# Each glyph is 3 columns × 5 rows (5 bits per column, bit 0 = top row).
# Designed for the Jumperless V5 10×30 overlay grid; with 2x vertical stretch
# the glyph spans the full 10 rows.
#
# Version: 0.2.12+20260512

__all__ = ["FONT"]

FONT = {
    "M": [0b11111, 0b00010, 0b11111],
    "C": [0b11111, 0b10001, 0b10001],
    "P": [0b11111, 0b00111, 0b00101],
    "O": [0b11111, 0b10001, 0b11111],
    "N": [0b11111, 0b00110, 0b11111],
    "E": [0b11111, 0b10101, 0b10001],
    "T": [0b00001, 0b11111, 0b00001],
    "D": [0b11111, 0b10001, 0b01110],
    "I": [0b00000, 0b11111, 0b00000],
    "S": [0b10111, 0b10101, 0b11101],
    " ": [0b00000, 0b00000, 0b00000],
}