* fix(web): implement delete_cached so the font catalog cache actually invalidates
api_v3.py's font upload/delete handlers import delete_cached from
web_interface.cache, but the function was never defined. The surrounding
except ImportError silently swallowed the failure, so the fonts_catalog
cache entry survived uploads/deletes and newly uploaded fonts did not
appear until the TTL expired or the service restarted.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(web): remove dead weather/stocks partial routes that returned 500
The partial dispatcher still routed 'weather' and 'stocks' to loaders
rendering v3/partials/weather.html and stocks.html — templates that no
longer exist since weather and stocks became store plugins. Requesting
either partial raised TemplateNotFound, which the catch-all turned into
a 500. No template or JS references these partials (the only 'weather'
hit in the front end is a plugin-store category filter option), so the
branches and both loader functions are removed; unknown partials now
fall through to the existing 404 handler.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(deps): align contradictory psutil/Flask-Limiter/freetype-py pins
requirements.txt's optional-install comment recommended psutil>=5.9,<6.0
while web_interface/requirements.txt hard-requires >=6.0,<7.0 — anyone
following the comment ends up with an unsatisfiable pair. The comment now
recommends the same range the web interface requires (all psutil APIs
used — Process, boot_time, cpu_percent, disk_usage, virtual_memory — are
stable in 6.x). Flask-Limiter gains the same <4.0 cap in both files and
freetype-py the same >=2.5.1 floor.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(config): add template keys the code already reads
display.hardware gains pixel_mapper_config, row_address_type,
multiplexing and panel_type (read at display_manager.py with these exact
fallbacks — users on non-standard panels previously had no way to
discover them from the template). vegas_scroll gains
frame_based_scrolling and scroll_delay, the only two of its 27 keys the
template omitted (read in src/vegas_mode/config.py). plugin_system gains
development_mode, which the web UI reads and writes but the template
never declared.
Every added value is byte-identical to the code-side .get() fallback, so
ConfigManager._migrate_config() merging these keys into existing user
configs cannot change behavior on any installed device.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(scripts): repair broken sys.path setup in utility scripts
clear_cache.py and download_nba_logos.py pointed sys.path at a 'src'
directory relative to the script's own folder (scripts/utils/src and
scripts/src — neither exists), so both crashed on import; they now insert
the project root and import via the src package like the other scripts.
debug_web_manual.py resolved 'project root' to scripts/debug/ instead of
two levels up. fix_nhl_cache.sh is removed: it used Python docstring
syntax in a bash script and invoked clear_nhl_cache.py, which does not
exist anywhere in the repo — it cannot ever have worked in its current
location.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: correct stale file:line references and the loader-fallback contradiction
CLAUDE.md and .cursorrules disagreed about plugin-directory fallback
behavior; the code (SchemaManager.get_schema_path) probes plugins/
BEFORE plugin-repos/, and the main discovery path has no fallback at
all — both files now describe the real behavior, preferring symbol names
over line numbers so the references rot slower. REST_API_REFERENCE.md
pointed at app.py:144/:607 for mounts that live at :199/:799 and counted
92 routes where there are 94. PLUGIN_ARCHITECTURE_SPEC.md's historical
banner gains a note that its example imports
(src/plugin_system/base_classes/*_plugin.py) never shipped — the real
base classes are src.base_classes.sports.SportsCore and
src.base_classes.hockey.Hockey.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: fix broken links, phantom script references, and stale CI description
Repairs every broken relative link in active docs (targets renamed or
archived long ago: PLUGIN_DEVELOPMENT.md -> PLUGIN_DEVELOPMENT_GUIDE.md,
API_REFERENCE.md -> REST_API_REFERENCE.md, PLUGIN_STORE_USER_GUIDE.md ->
PLUGIN_STORE_GUIDE.md, plugin_docs/ dir, TROUBLESHOOTING_QUICK_START.md,
and MIGRATION_GUIDE's README link that silently resolved to the docs
index instead of the project README). Replaces commands invoking scripts
that do not exist (scripts/update_stats.py, validate_registry.py,
check_updates.py, fix_permissions.sh) with the real tooling, and
rewrites HOW_TO_RUN_TESTS.md's CI section, which described a
security-audit workflow that was never committed and a pytest workflow
'queued to land' that landed long ago as test.yml.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: complete the docs index and refresh the web interface file tree
docs/README.md's own policy says every page must be linked from the
index, yet five weren't — including the entire skin system
(SKIN_SYSTEM.md, CREATING_SKINS.md), ADAPTIVE_LAYOUT.md,
plugin-safety-harness.md and SPORTS_UNIFICATION.md. Each is now listed
in the section it belongs to, and PLUGIN_ARCHITECTURE_SPEC.md is marked
historical in the index (the doc itself already carries the banner).
web_interface/README.md's static/v3 tree showed only app.css/app.js;
it now reflects the actual contents.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: remove dead modules confirmed unused in-repo and across all store plugins
- src/common/cli.py: imports a 'ledmatrix_common' package that exists
nowhere (not in this repo, any requirements file, or the plugin
monorepo), so it cannot ever have run; its README section claimed
scripts/dev/* used it, which was also untrue.
- src/web_interface/logging_config.py: zero callers — the web app uses
web_interface/logging_config.py (a different module), and nothing
imports the src copy.
- handle_errors decorator in src/web_interface/error_handler.py: zero
call sites (the module's response helpers stay — they are used).
- ConfigManager.get_clock_config(): reads a 'clock' config key that no
longer exists anywhere; only caller was its own unit test.
Deliberately kept despite zero in-repo callers: DisplayError,
src/common/config_helper.py and display_helper.py — all documented as
plugin-facing API (docs/PLUGIN_ERROR_HANDLING.md, src/common/README.md),
and third-party plugins outside the official monorepo cannot be
enumerated. Verified against a fresh clone of ledmatrix-plugins (43
plugins): zero references to any removed symbol.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: remove manager-era NBA test files and one-off debug scripts
The four test_nba_*.py files imported nba_managers, leaderboard_manager
and odds_manager — top-level modules deleted when sports displays became
plugins — inside try/except blocks that swallowed the ImportError, so
they passed while exercising nothing. test_nba_data_structure.py and
debug_nba_api.py (a diagnostic script living in test/) made live ESPN
API calls rather than testing repo code. None were enrolled in CI.
scripts/debug/direct_fix_imports.py and check_imports.py were one-shot
artifacts that edited/inspected a hardcoded ~/LEDMatrix/web_interface/
app.py to fix an import problem solved long ago; nothing references
them.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: remove generate_report.py, which aggregates artifacts of CI jobs that do not exist
The script's only function is to merge JSON artifacts
(bandit/semgrep/pip-audit/safety/gitleaks results) produced by a
security-audit workflow that was never committed —
.github/workflows/ has no such jobs, so there is nothing for it to
aggregate and no way to run it usefully. Its siblings stay:
prove_security.py and audit_plugins.py both run standalone (verified),
and .codacy.yml stays because the Codacy service (README badge) reads it
server-side without a workflow file.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(web): load the three widget scripts store plugins already declare
time-picker.js, file-upload-single.js and plugin-file-manager.js
register widgets that installed store plugins reference in their config
schemas (countdown uses x-widget: time-picker and file-upload-single;
of-the-day uses plugin-file-manager), but base.html never included the
scripts. plugin_config.html renders such fields as an empty container
that polls LEDMatrixWidgets.get(...) on a 50ms loop forever, so those
plugin config fields appeared permanently blank. The audit initially
flagged these files as dead code; the monorepo cross-check proved the
opposite — they were unreachable, not unused.
example-color-picker.js (the documented custom-widget example) gains an
explicit warning that including it in base.html would shadow the
built-in color-picker widget.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: drop the legacy youtube block from the secrets template
No code reads a top-level youtube secrets key: the youtube-stats plugin
receives its API key namespaced under its own plugin id (declared via
x-secret in its config schema), like every other store plugin. The key
survives only in state_reconciliation.py's non-plugin-key exclusion set,
which stays — existing installs still carry the key in their generated
config_secrets.json, and the exclusion prevents it from being
misclassified as a plugin config. New installs simply stop being asked
for a YouTube API key they have nowhere to use.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore(deps): remove packages nothing imports, declare direct imports, move mypy to test deps
Removed from requirements.txt: python-socketio, python-engineio,
websockets, websocket-client — zero imports anywhere in this repo, and
the one store plugin that needs Socket.IO (ledmatrix-music) declares it
in its own requirements.txt, which the plugin store installs. Removed
the same quartet plus timezonefinder, geopy, google-auth-oauthlib,
google-auth-httplib2, google-api-python-client, unidecode, icalevents,
python-dateutil, flask-wtf and the werkzeug pin from
web_interface/requirements.txt — all leftovers from the deleted built-in
weather/calendar/music displays (flask-wtf was doubly dead: app.py
explicitly disables CSRF and sets csrf=None). scripts/
install_dependencies_apt.py, which mirrors these lists for the
first-time installer, drops the same packages.
Added: urllib3 (imported directly in four core modules), jinja2 and
markupsafe (imported directly in pages_v3.py) — previously reachable
only as transitives. mypy moves from runtime requirements to
requirements-test.txt.
Verified in a fresh venv: all four requirements files co-install, pip
check is clean, the full CI-enrolled suite (907 tests) and a Flask boot
smoke pass with the trimmed dependency set.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* refactor: single canonical DateTimeEncoder
src/cache_manager.py and src/cache/disk_cache.py each defined an
identical DateTimeEncoder (datetime -> ISO-8601). The disk_cache copy is
the only one actually used for serialization; cache_manager now
re-exports it instead of defining a twin, so the two can never silently
diverge. Import compatibility is preserved — from src.cache_manager
import DateTimeEncoder still works and is the same class object.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs(code): document deliberate duplicates instead of merging them
The audit surfaced several near-duplicate implementations that turned
out to be either deliberate forks or behaviorally different — merging
any of them would risk changing behavior on installed devices, so each
now carries an explicit comment stating the relationship:
- VisualDisplayManager: headless fork of DisplayManager; header now
lists the ~15 mirrored methods and warns that DisplayManager changes
must be mirrored.
- normalize_abbreviation: LogoDownloader's version (called directly by
nine scoreboard plugins) replaces filesystem-unsafe characters;
LogoHelper's strips spaces. Logo filenames on existing installs
depend on both behaviors staying put.
- The two PluginTestBase classes: the shipped one is plugin-author
API, the repo's own richer harness lives in test/plugins/ — now
cross-referenced.
Also verified (no change needed): ConfigManager's backup/rollback
methods genuinely delegate to AtomicConfigManager, and SportsCore
already delegates _read_bdf_native_size to FontManager.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: add a unified configuration reference
There was no single place documenting what lives in config.json —
display.* keys were scattered across README sections, vegas_scroll lived
in ADVANCED_FEATURES.md, and dim_schedule, display.double_sided,
sync.follower_position, plugin_system.development_mode and the four
newly-templated hardware keys were documented nowhere. CONFIG_REFERENCE.md
now lists every template key plus the code-read-only keys, each with
type, default, and the code location that reads it, and explains the
secrets file's plugin-id namespacing. Linked from the docs index.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: bring the README's feature tour into the plugin era
The Core Features section still presented clock/weather/sports/stocks/
music displays as built into the project, when all of them are store
plugins installed from the ledmatrix-plugins monorepo — only
starlark-apps and web-ui-info ship in this repo. The intro now says so
(the showcase itself is unchanged; those are real displays available in
the store). The display_durations reference drops its built-in-calendar
example in favor of plugin-id keys, and the Configuration section links
the new CONFIG_REFERENCE.md.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: archive the custom-icons status report, cross-link config docs, document assets/
PLUGIN_CUSTOM_ICONS_FEATURE.md was a 'What Was Implemented' status
report duplicating the actual guide (PLUGIN_CUSTOM_ICONS.md) — moved to
docs/archive/ per the docs index's own policy. The overlapping
plugin-config docs keep their content but PLUGIN_CONFIG_ARCHITECTURE.md
now states up front which doc is canonical for which purpose.
assets/README.md is new and load-bearing: assets/stocks, weather,
news_logos and broadcast_logos have zero references in this repo's code,
which makes them look deletable — but store plugins (ledmatrix-stocks,
ledmatrix-weather, news, odds-ticker) resolve those exact paths at
runtime against the install directory. The README records that evidence
so a future cleanup doesn't break installed plugins.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* test: add regression guards for the bug classes fixed in this PR
Three lightweight static checks, all enrolled in CI's unit-test
allowlist along with the new web-cache test:
- test_template_targets.py: every literal render_template() target must
exist (would have caught the weather/stocks partial 500s at commit
time).
- test_widget_scripts.py: every widget JS file must be script-included
in base.html or explicitly allowlisted with a reason (would have
caught the unloaded time-picker/file-upload-single/plugin-file-manager
widgets), and allowlisted files must NOT be included (prevents the
example widget from shadowing the real color-picker).
- test_doc_links.py: relative markdown links in active docs must
resolve (docs/archive/ exempt).
Each guard was verified to fail against the pre-PR tree and pass now.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(deps): restore the werkzeug version floor
Commit 1ec22db removed the werkzeug>=3.1.6,<4.0.0 pin along with the
genuinely-unused packages, but this one was a version floor on Flask's
transitive dependency, not a phantom: Flask 3.1.3 itself only requires
werkzeug>=3.1.0, so dropping the pin let fresh installs resolve
3.1.0-3.1.5. Restored with a comment explaining why it exists.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix(web): route pixel_mapper_config into display.hardware; guard time-picker registration
pixel_mapper_config was the only display.hardware key absent from both
the display_fields detection allowlist and the hardware write loop in
the settings save path. No form posts it today, but if one ever did the
key would fall through to the generic handler and land at the TOP level
of config.json — where state_reconciliation would mistake it for a
missing plugin id and loop auto-repair attempts (the failure class the
'github'/'youtube' exclusion comment documents). It now round-trips
into display.hardware like its siblings.
time-picker.js gains the same LEDMatrixWidgets-undefined guard its two
sibling widgets already have; correct today only via defer ordering.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: align installer leftovers with the dependency cleanup
first_time_install.sh's fallback secrets heredoc (used only when the
template is missing) still wrote the legacy youtube block — now matches
the template (github only). install_dependencies_apt.py drops the
IMPORT_NAME_MAP entries for packages no longer in its install lists and
a stale google-api reference in a docstring.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix: address CodeRabbit review findings
Verified each finding against the code; fixes for the valid ones:
- install_dependencies_apt.py: the installer listed 'freetype', but the
declared dependency is freetype-py — an apt miss would pip-install the
wrong PyPI package. Now installs freetype-py with an import-name
mapping (pre-existing bug, surfaced by the review).
- api_v3.py: pixel_mapper_config is validated as a string before being
saved to display.hardware (JSON callers could previously store an
object/list the matrix library can't use).
- .cursorrules: the Plugin Loading Process and File Organization
sections still said discovery scans plugins/ — now consistent with the
corrected overview (configured directory, default plugin-repos/).
- README.md: removed the stale '(except the core calendar)' claim — no
core calendar exists in src/ — and qualified the plugin inventory
(official plugins in the monorepo; third-party from their own repos).
- CONFIG_REFERENCE.md: hardware_mapping now shows the code fallback
(adafruit-hat-pwm) alongside the template value.
- PLUGIN_REGISTRY_SETUP_GUIDE.md: check_plugin.py takes --plugin, not a
positional id.
- scripts/fix_perms/fix_*.sh: exec bits set so the documented
'sudo ./...' invocations work.
- Guard tests hardened: template guard now catches multi-line
render_template() calls; widget guard parses actual <script> src
values and fails if the widgets dir goes missing; type hints and
docstrings added per repo coding guidelines.
Skipped with reasons (noted on the PR): limit_refresh_rate_hz 100-vs-90
is documented as intentional in CONFIG_REFERENCE.md; the psutil comment
already names the enforcing manifest; docs/archive/ findings are out of
scope per the docs policy (archive may rot).
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: remove Cursor IDE tooling, consolidate its guidance into CLAUDE.md
The maintainer no longer uses Cursor. .cursorrules, .cursorignore and the
.cursor/ tree (rules, plugin templates, a parallel 751-line plugins
guide) are removed; measurement showed near-zero literal overlap risk —
the canonical content already lives in docs/. Unique guidance worth
keeping moved before deletion:
- CLAUDE.md gains the dev workflow (dev_plugin_setup.sh, dev_server.py,
run.py -e, check_plugin.py), the plugin-secrets namespacing contract,
and the no-draw_image()/paste-onto-PIL pitfall.
- PLUGIN_DEVELOPMENT_GUIDE.md absorbs the plugin version-management
rules (pre-push hook install, SKIP_TAG, version resolution order) that
its own text previously linked out to .cursorrules for.
- The one completed plan doc (.cursor/plans/) is archived to
docs/archive/ per the docs policy rather than deleted.
One of the deleted rule files (sports-managers.mdc) targeted
src/*_managers.py globs that have matched nothing since the plugin
migration.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* chore: second-pass cleanup — dead installer branch, broken script, orphaned JS, misfiled test deps
- first_time_install.sh: removed the pip fallback branch that installed
from requirements_web_v2.txt — a file that has not existed since the
v2 web interface was removed (the branch always printed its own
'not found; skipping' warning).
- scripts/remove_plugin_backups.sh deleted: its PROJECT_ROOT resolved to
the repo's PARENT directory, and its verify_submodules() checks for
plugin submodules from an era before plugins moved to the store — it
could never have worked from its current location.
- plugins_manager.js: removed three functions with zero call sites
anywhere (addKeyValuePair, formatCommit, togglePasswordVisibility) —
verified against all templates, all JS, and the dynamic window[name]
dispatch sites, which resolve widget-registry keys only. Also replaced
base.html's misleading 'Legacy ... during migration' label: the file
is deliberately loaded last and provides the LIVE implementations of
seven window.* plugin actions that shadow same-named definitions in
app.js/app-shell.js.
- pytest/pytest-cov/pytest-mock moved from runtime requirements.txt to
requirements-test.txt (CI already installs both files; the installer's
line-by-line loop simply installs three fewer packages on devices; no
store plugin declares pytest). HOW_TO_RUN_TESTS.md updated.
- scripts/add_defaults_to_schemas.py and analyze_plugin_schemas.py
scanned the empty legacy plugins/ dir — now scan plugin-repos/.
Verified: fresh venv installs all four requirements files with pip check
clean and pytest available; bash -n on the installer; node --check on
the JS; widget/cache guard tests green.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* docs: correct semantically stale content across the user and developer guides
A second-pass content audit checked the guides' substantive claims
against the code (the first pass only fixed mechanical drift). Fixes:
- GETTING_STARTED: described booting a prebuilt SD image and seeing
default clock/weather plugins — neither exists. Now documents the real
install (Pi OS Lite + one-shot installer / first_time_install.sh) and
that displays come from the Plugin Store. Duration and ordering
instructions moved to the Rotation tab where the controls actually
live.
- WEB_INTERFACE_GUIDE: three whole tabs were undocumented (Rotation,
Backup & Restore, Tools) and the Display tab's Vegas Scroll section
was unmentioned. Fonts overrides are per display element (not per
plugin); Logs has an Auto-scroll checkbox (not a Pause button); the
aspirational keyboard-shortcut list and no-JS claim removed.
- TROUBLESHOOTING: the hand-written service-file template (wrong user,
wrong ExecStart, dropped the autostart gate) replaced with the real
systemd/ units + install scripts; recovery steps no longer copy
placeholder units verbatim; WiFi curl endpoint corrected to /api/v3/;
cache-clearing advice now targets the real cache locations.
- ADVANCED_FEATURES: removed a false claim that CacheManager has no
delete(); fixed two example snippets that raise TypeError
(BackgroundDataService and get_config_file_mode signatures); fixed
cache paths, a 5-minute TTL that is actually 1 hour, and the vegas
table now links the complete 26-key reference.
- EMULATOR_SETUP_GUIDE: documented run.py flags that don't exist
(--plugin/--test-plugins) removed in favor of dev_server.py and
check_plugin.py; shipped emulator config values corrected (browser
adapter default on :8888, not pygame).
- PLUGIN_QUICK_REFERENCE: drag-and-drop reordering is shipped, not
'not yet supported'; discovery-fallback and registry-repo claims
corrected. PLUGIN_API_REFERENCE: get_vegas_segment_width returns
panels, not pixels. CONTRIBUTING: the repo uses flake8/mypy/bandit
pre-commit hooks, not black/ruff, and tests need requirements-test.txt.
- SKIN_SYSTEM/DEVELOPER_QUICK_REFERENCE: stale module paths.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
* fix: raise the two new dependency floors past their CVEs, silence a deliberate re-export
All three of these were introduced by this PR, which is what makes them
worth fixing here rather than deferring.
`urllib3` and `jinja2` were added to the requirements so that direct
imports stop relying on transitives — right call, but both floors were
set to the version that introduced the API rather than a version that is
safe to install. `urllib3>=1.26.0` sits below roughly ten CVEs including
a decompression-bomb safeguard bypass, and `jinja2>=3.1.0` below five
including two sandbox breakouts. Raised to 2.7.0 and 3.1.6, which is what
a working device already runs, so no install is disturbed. The comments
now say the floor is a security floor, since the next person to read
"imported directly" would otherwise reasonably lower it again.
This is the same reasoning the PR already applied to werkzeug; these two
just missed it.
The `DateTimeEncoder` import in cache_manager is unused on purpose — the
canonical class moved to src.cache.disk_cache and this re-export keeps
the documented import path working. flake8 cannot see intent, so it gets
an explicit `# noqa: F401` rather than being removed and quietly breaking
anything importing it from here. Verified the re-export still resolves to
the same object and still serialises datetimes.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Udr6MfaFLUPhX5Fgo67Jf5
* fix: address CodeRabbit re-review — installer robustness and doc lint
- install_dependencies_apt.py: an import-only check let Debian
Bookworm's python3-freetype 2.3.0 satisfy the freetype-py>=2.5.1 pin.
check_package_installed() now verifies the installed freetype-py
version, and an apt install that lands below the minimum falls through
to pip instead of counting as success.
- first_time_install.sh: the .web_deps_installed marker was created even
when the smart installer failed, so re-runs skipped installation with
dependencies missing. The marker is now created only on success.
- CONTRIBUTING.md: document installing the pre-commit CLI before
'pre-commit install' (the requirements files don't provide it).
- Doc lint: fence language on the on-demand cache example (MD040),
blockquote continuation in GETTING_STARTED (MD028), and the
suppress_adapter_load_errors key removed from the emulator debug
example to match the options table.
Skipped one finding with reason (noted on the PR): the per-plugin
display_duration field in PLUGIN_QUICK_REFERENCE's example is not
obsolete — BasePlugin.get_display_duration() reads it and
PLUGIN_CONFIG_CORE_PROPERTIES.md documents it as a core property;
display.display_durations is a per-mode override, not a replacement.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SXb4mKcAkVaxkeTb3YnAdr
---------
Co-authored-by: Claude <noreply@anthropic.com>
26 KiB
Plugin API Reference
Complete API reference for plugin developers. This document describes all methods and properties available to plugins through the Display Manager, Cache Manager, and Plugin Manager.
Adaptive layout: every
BasePluginalso exposesself.layout,self.draw_fit(text, region)andself.draw_image(img, region, ...)— the recommended way to render text and images that scale to any panel size. See ADAPTIVE_LAYOUT.md.
Table of Contents
BasePlugin
All plugins must inherit from BasePlugin and implement the required methods. The base class provides access to managers and common functionality.
Available Properties
self.plugin_id # Plugin identifier (string)
self.config # Plugin configuration dictionary
self.display_manager # DisplayManager instance
self.cache_manager # CacheManager instance
self.plugin_manager # PluginManager instance
self.logger # Plugin-specific logger
self.enabled # Boolean enabled status
Required Methods
update() -> None
Fetch/update data for this plugin. Called based on update_interval specified in the plugin's manifest.
Example:
def update(self):
cache_key = f"{self.plugin_id}_data"
cached = self.cache_manager.get(cache_key, max_age=3600)
if cached:
self.data = cached
return
self.data = self._fetch_from_api()
self.cache_manager.set(cache_key, self.data)
display(force_clear: bool = False) -> None
Render this plugin's display. Called during display rotation or when explicitly requested.
Parameters:
force_clear(bool): If True, clear display before rendering
Example:
def display(self, force_clear=False):
if force_clear:
self.display_manager.clear()
self.display_manager.draw_text(
"Hello, World!",
x=5, y=15,
color=(255, 255, 255)
)
self.display_manager.update_display()
Optional Methods
validate_config() -> bool
Validate plugin configuration. Override to implement custom validation.
Returns: True if config is valid, False otherwise
has_live_content() -> bool
Check if plugin currently has live content. Override for live priority plugins.
Returns: True if plugin has live content
get_live_modes() -> List[str]
Get list of display modes to show during live priority takeover.
Returns: List of mode names
cleanup() -> None
Clean up resources when plugin is unloaded. Override to close connections, stop threads, etc.
on_config_change(new_config: Dict[str, Any]) -> None
Called after plugin configuration is updated via web API.
on_enable() -> None
Called when plugin is enabled.
on_disable() -> None
Called when plugin is disabled.
get_display_duration() -> float
Get display duration for this plugin. Can be overridden for dynamic durations.
Returns: Duration in seconds
get_info() -> Dict[str, Any]
Return plugin info for display in web UI. Override to provide additional state information.
Dynamic-duration hooks
Plugins that render multi-step content (e.g. cycling through several games)
can extend their display time until they've shown everything. To opt in,
either set dynamic_duration.enabled: true in the plugin's config or
override supports_dynamic_duration().
supports_dynamic_duration() -> bool
Return True if this plugin should use dynamic durations. Default reads
config["dynamic_duration"]["enabled"].
get_dynamic_duration_cap() -> Optional[float]
Maximum number of seconds the controller will keep this plugin on screen
in dynamic mode. Default reads
config["dynamic_duration"]["max_duration_seconds"].
is_cycle_complete() -> bool
Override this to return True only after the plugin has rendered all of
its content for the current rotation. Default returns True immediately,
which means a single display() call counts as a full cycle.
reset_cycle_state() -> None
Called by the controller before each new dynamic-duration session. Reset internal counters/iterators here.
Live priority hooks
Live priority lets a plugin temporarily take over the rotation when it has
urgent content (live games, breaking news). Enable by setting
live_priority: true in the plugin's config and overriding
has_live_content().
has_live_priority() -> bool
Whether live priority is enabled in config (default reads
config["live_priority"]).
has_live_content() -> bool
Override to return True when the plugin currently has urgent content.
Default returns False.
get_live_modes() -> List[str]
List of display modes to show during a live takeover. Default returns the
plugin's display_modes from its manifest.
Vegas scroll hooks
Vegas mode shows multiple plugins as a single continuous scroll instead of rotating one at a time. Plugins control how their content appears via these hooks. See ADVANCED_FEATURES.md for the user side of Vegas mode.
get_vegas_content() -> Optional[PIL.Image | List[PIL.Image] | None]
Return content to inject into the scroll. Multi-item plugins (sports,
odds, news) should return a list of PIL Images so each item scrolls
independently. Static plugins (clock, weather) can return a single image.
Returning None falls back to capturing whatever display() produces.
get_vegas_content_type() -> str
'multi', 'static', or 'none'. Affects how Vegas mode treats the
plugin. Default 'static'.
get_vegas_display_mode() -> VegasDisplayMode
Returns one of VegasDisplayMode.SCROLL, FIXED_SEGMENT, or STATIC.
Read from config["vegas_mode"] or override directly.
get_supported_vegas_modes() -> List[VegasDisplayMode]
The set of Vegas modes this plugin can render. Used by the UI to populate the mode selector for this plugin.
get_vegas_segment_width() -> Optional[int]
For FIXED_SEGMENT plugins, the number of panels the segment
occupies in the scroll (pixel width = panels × single_panel_width,
from display.hardware.cols). None uses the default of 1 panel.
The full source for
BasePluginlives insrc/plugin_system/base_plugin.py. If a method here disagrees with the source, the source wins — please open an issue or PR to fix the doc.
Display Manager
The Display Manager handles all rendering operations on the LED matrix. Available as self.display_manager in plugins.
Properties
display_manager.width # Display width in pixels (int)
display_manager.height # Display height in pixels (int)
Core Methods
clear() -> None
Clear the display completely. Creates a new black image.
Note: Does not call update_display() automatically. Call update_display() after drawing new content.
Example:
self.display_manager.clear()
# Draw new content...
self.display_manager.update_display()
update_display() -> None
Update the physical display using double buffering. Call this after drawing all content.
Example:
self.display_manager.draw_text("Hello", x=10, y=10)
self.display_manager.update_display() # Actually show on display
Text Rendering
draw_text(text: str, x: int = None, y: int = None, color: tuple = (255, 255, 255), small_font: bool = False, font: ImageFont = None, centered: bool = False) -> None
Draw text on the canvas.
Parameters:
text(str): Text to displayx(int, optional): X position. IfNone, text is centered horizontally. Ifcentered=True, x is treated as center point.y(int, optional): Y position (default: 0, top of display)color(tuple): RGB color tuple (default: white)small_font(bool): Use small font if Truefont(ImageFont, optional): Custom font object (overrides small_font)centered(bool): If True, x is treated as center point; if False, x is left edge
Example:
# Centered text
self.display_manager.draw_text("Hello", color=(255, 255, 0))
# Left-aligned at specific position
self.display_manager.draw_text("World", x=10, y=20, color=(0, 255, 0))
# Centered at specific x position
self.display_manager.draw_text("Center", x=64, y=16, centered=True)
get_text_width(text: str, font) -> int
Get the width of text when rendered with the given font.
Parameters:
text(str): Text to measurefont: Font object (ImageFont or freetype.Face)
Returns: Width in pixels
Example:
width = self.display_manager.get_text_width("Hello", self.display_manager.regular_font)
x = (self.display_manager.width - width) // 2 # Center text
get_font_height(font) -> int
Get the height of the given font for line spacing purposes.
Parameters:
font: Font object (ImageFont or freetype.Face)
Returns: Height in pixels
Example:
font_height = self.display_manager.get_font_height(self.display_manager.regular_font)
y = 10 + font_height # Position next line
format_date_with_ordinal(dt: datetime) -> str
Format a datetime object into 'Mon Aug 30th' style with ordinal suffix.
Parameters:
dt: datetime object
Returns: Formatted date string
Example:
from datetime import datetime
date_str = self.display_manager.format_date_with_ordinal(datetime.now())
# Returns: "Jan 15th"
Image Rendering
The display manager doesn't provide a dedicated draw_image() method.
Instead, plugins paste directly onto the underlying PIL Image
(display_manager.image), then call update_display() to push the buffer
to the matrix.
from PIL import Image
logo = Image.open("assets/logo.png").convert("RGB")
self.display_manager.image.paste(logo, (10, 10))
self.display_manager.update_display()
For transparency support, paste using a mask:
icon = Image.open("assets/icon.png").convert("RGBA")
self.display_manager.image.paste(icon, (5, 5), icon)
self.display_manager.update_display()
This is the same pattern the bundled scoreboard base classes
(src/base_classes/baseball.py, basketball.py, football.py,
hockey.py) use, so it's the canonical way to render arbitrary images.
Weather Icons
draw_weather_icon(condition: str, x: int, y: int, size: int = 16) -> None
Draw a weather icon based on the condition string.
Parameters:
condition(str): Weather condition (e.g., "clear", "cloudy", "rain", "snow", "storm")x(int): X positiony(int): Y positionsize(int): Icon size in pixels (default: 16)
Supported Conditions:
"clear","sunny"→ Sun icon"clouds","cloudy","partly cloudy"→ Cloud icon"rain","drizzle","shower"→ Rain icon"snow","sleet","hail"→ Snow icon"thunderstorm","storm"→ Storm icon
Example:
self.display_manager.draw_weather_icon("rain", x=10, y=10, size=16)
draw_sun(x: int, y: int, size: int = 16) -> None
Draw a sun icon with rays.
Parameters:
x(int): X positiony(int): Y positionsize(int): Icon size (default: 16)
draw_cloud(x: int, y: int, size: int = 16, color: tuple = (200, 200, 200)) -> None
Draw a cloud icon.
Parameters:
x(int): X positiony(int): Y positionsize(int): Icon size (default: 16)color(tuple): RGB color (default: light gray)
draw_rain(x: int, y: int, size: int = 16) -> None
Draw rain icon with cloud and droplets.
draw_snow(x: int, y: int, size: int = 16) -> None
Draw snow icon with cloud and snowflakes.
draw_text_with_icons(text: str, icons: List[tuple] = None, x: int = None, y: int = None, color: tuple = (255, 255, 255)) -> None
Draw text with weather icons at specified positions.
Parameters:
text(str): Text to displayicons(List[tuple], optional): List of (icon_type, x, y) tuplesx(int, optional): X position for texty(int, optional): Y position for textcolor(tuple): Text color
Note: Automatically calls update_display() after drawing.
Example:
icons = [
("sun", 5, 5),
("cloud", 100, 5)
]
self.display_manager.draw_text_with_icons(
"Weather: Sunny, Cloudy",
icons=icons,
x=10, y=20
)
Scrolling State Management
For plugins that implement scrolling content, use these methods to coordinate with the display system.
set_scrolling_state(is_scrolling: bool) -> None
Mark the display as scrolling or not scrolling. Call when scrolling starts/stops.
Parameters:
is_scrolling(bool): True if currently scrolling, False otherwise
Example:
def display(self, force_clear=False):
self.display_manager.set_scrolling_state(True)
# Scroll content...
self.display_manager.set_scrolling_state(False)
is_currently_scrolling() -> bool
Check if the display is currently in a scrolling state.
Returns: True if scrolling, False otherwise
defer_update(update_func: Callable, priority: int = 0) -> None
Defer an update function to be called when not scrolling. Useful for non-critical updates that should wait until scrolling completes.
Parameters:
update_func: Function to call when not scrollingpriority(int): Priority level (lower numbers = higher priority, default: 0)
Example:
def update(self):
# Critical update - do immediately
self.fetch_data()
# Non-critical update - defer until not scrolling
self.display_manager.defer_update(
lambda: self.update_cache_metadata(),
priority=1
)
process_deferred_updates() -> None
Process any deferred updates if not currently scrolling. Called automatically by the display controller, but can be called manually if needed.
Note: Plugins typically don't need to call this directly.
get_scrolling_stats() -> dict
Get current scrolling statistics for debugging.
Returns: Dictionary with scrolling state information
Example:
stats = self.display_manager.get_scrolling_stats()
self.logger.debug(f"Scrolling: {stats['is_scrolling']}, Deferred: {stats['deferred_count']}")
Available Fonts
The Display Manager provides several pre-loaded fonts:
display_manager.regular_font # Press Start 2P, size 8
display_manager.small_font # Press Start 2P, size 8
display_manager.calendar_font # 5x7 BDF font
display_manager.extra_small_font # 4x6 TTF font, size 6
display_manager.bdf_5x7_font # Alias for calendar_font
Cache Manager
The Cache Manager handles data caching to reduce API calls and improve performance. Available as self.cache_manager in plugins.
Basic Methods
get(key: str, max_age: int = 300) -> Optional[Dict[str, Any]]
Get data from cache if it exists and is not stale.
Parameters:
key(str): Cache keymax_age(int): Maximum age in seconds (default: 300)
Returns: Cached data dictionary, or None if not found or stale
Example:
cached = self.cache_manager.get("weather_data", max_age=600)
if cached:
return cached
set(key: str, data: Dict[str, Any], ttl: Optional[int] = None) -> None
Store data in cache with current timestamp.
Parameters:
key(str): Cache keydata(Dict): Data to cachettl(int, optional): Time-to-live in seconds (for compatibility)
Example:
self.cache_manager.set("weather_data", {
"temp": 72,
"condition": "sunny"
})
clear_cache(key: Optional[str] = None) -> None
Remove a specific cache entry, or all cache entries when called without arguments.
Parameters:
key(str, optional): Cache key to delete. If omitted, every cached entry (memory + disk) is cleared.
Example:
# Drop one stale entry
self.cache_manager.clear_cache("weather_data")
# Nuke everything (rare — typically only used by maintenance tooling)
self.cache_manager.clear_cache()
Advanced Methods
get_cached_data(key: str, max_age: int = 300, memory_ttl: Optional[int] = None) -> Optional[Dict[str, Any]]
Get data from cache with separate memory and disk TTLs.
Parameters:
key(str): Cache keymax_age(int): TTL for persisted (on-disk) entrymemory_ttl(int, optional): TTL for in-memory entry (defaults to max_age)
Returns: Cached data, or None if not found or stale
Example:
# Use memory cache for 60 seconds, disk cache for 1 hour
data = self.cache_manager.get_cached_data(
"api_response",
max_age=3600,
memory_ttl=60
)
get_cached_data_with_strategy(key: str, data_type: str = 'default') -> Optional[Dict[str, Any]]
Get data using data-type-specific cache strategy. Automatically selects appropriate TTL based on data type.
Parameters:
key(str): Cache keydata_type(str): Data type for strategy selection (e.g., 'weather', 'sports_live', 'stocks')
Returns: Cached data, or None if not found or stale
Example:
# Automatically uses appropriate cache duration for weather data
weather = self.cache_manager.get_cached_data_with_strategy(
"weather_current",
data_type="weather"
)
get_with_auto_strategy(key: str) -> Optional[Dict[str, Any]]
Get data with automatic strategy detection from cache key.
Parameters:
key(str): Cache key (strategy inferred from key name)
Returns: Cached data, or None if not found or stale
Example:
# Strategy automatically detected from key name
data = self.cache_manager.get_with_auto_strategy("nhl_live_scores")
get_background_cached_data(key: str, sport_key: Optional[str] = None) -> Optional[Dict[str, Any]]
Get background service cached data with sport-specific intervals.
Parameters:
key(str): Cache keysport_key(str, optional): Sport identifier (e.g., 'nhl', 'nba') for live interval lookup
Returns: Cached data, or None if not found or stale
Example:
# Uses sport-specific live_update_interval from config
games = self.cache_manager.get_background_cached_data(
"nhl_games",
sport_key="nhl"
)
Strategy Methods
get_cache_strategy(data_type: str, sport_key: Optional[str] = None) -> Dict[str, Any]
Get cache strategy configuration for a data type.
Parameters:
data_type(str): Data type (e.g., 'weather', 'sports_live', 'stocks')sport_key(str, optional): Sport identifier for sport-specific strategies
Returns: Dictionary with strategy configuration (max_age, memory_ttl, etc.)
Example:
strategy = self.cache_manager.get_cache_strategy("sports_live", sport_key="nhl")
max_age = strategy['max_age'] # Get configured max age
get_sport_live_interval(sport_key: str) -> int
Get the live_update_interval for a specific sport from config.
Parameters:
sport_key(str): Sport identifier (e.g., 'nhl', 'nba')
Returns: Live update interval in seconds
Example:
interval = self.cache_manager.get_sport_live_interval("nhl")
# Returns configured live_update_interval for NHL
get_data_type_from_key(key: str) -> str
Extract data type from cache key to determine appropriate cache strategy.
Parameters:
key(str): Cache key
Returns: Inferred data type string
get_sport_key_from_cache_key(key: str) -> Optional[str]
Extract sport key from cache key for sport-specific strategies.
Parameters:
key(str): Cache key
Returns: Sport identifier, or None if not found
Utility Methods
clear_cache(key: Optional[str] = None) -> None
Clear cache for a specific key or all keys.
Parameters:
key(str, optional): Specific key to clear. IfNone, clears all cache.
Example:
# Clear specific key
self.cache_manager.clear_cache("weather_data")
# Clear all cache
self.cache_manager.clear_cache()
get_cache_dir() -> Optional[str]
Get the cache directory path.
Returns: Cache directory path string, or None if not available
list_cache_files() -> List[Dict[str, Any]]
List all cache files with metadata.
Returns: List of dictionaries with cache file information (key, age, size, path, etc.)
Example:
files = self.cache_manager.list_cache_files()
for file_info in files:
self.logger.info(f"Cache: {file_info['key']}, Age: {file_info['age_display']}")
Metrics Methods
get_cache_metrics() -> Dict[str, Any]
Get cache performance metrics.
Returns: Dictionary with cache statistics (hits, misses, hit rate, etc.)
Example:
metrics = self.cache_manager.get_cache_metrics()
self.logger.info(f"Cache hit rate: {metrics['hit_rate']:.2%}")
get_memory_cache_stats() -> Dict[str, Any]
Get memory cache statistics.
Returns: Dictionary with memory cache stats (size, max_size, etc.)
Plugin Manager
The Plugin Manager provides access to other plugins and plugin system information. Available as self.plugin_manager in plugins.
Methods
get_plugin(plugin_id: str) -> Optional[Any]
Get a plugin instance by ID.
Parameters:
plugin_id(str): Plugin identifier
Returns: Plugin instance, or None if not found
Example:
weather_plugin = self.plugin_manager.get_plugin("weather")
if weather_plugin:
# Access weather plugin data
pass
get_all_plugins() -> Dict[str, Any]
Get all loaded plugin instances.
Returns: Dictionary mapping plugin_id to plugin instance
Example:
all_plugins = self.plugin_manager.get_all_plugins()
for plugin_id, plugin in all_plugins.items():
self.logger.info(f"Plugin {plugin_id} is loaded")
get_enabled_plugins() -> List[str]
Get list of enabled plugin IDs.
Returns: List of plugin identifier strings
get_plugin_info(plugin_id: str) -> Optional[Dict[str, Any]]
Get plugin information including manifest and runtime info.
Parameters:
plugin_id(str): Plugin identifier
Returns: Dictionary with plugin information, or None if not found
Example:
info = self.plugin_manager.get_plugin_info("weather")
if info:
self.logger.info(f"Plugin: {info['name']}, Version: {info.get('version')}")
get_all_plugin_info() -> List[Dict[str, Any]]
Get information for all plugins.
Returns: List of plugin information dictionaries
get_plugin_directory(plugin_id: str) -> Optional[str]
Get the directory path for a plugin.
Parameters:
plugin_id(str): Plugin identifier
Returns: Directory path string, or None if not found
get_plugin_display_modes(plugin_id: str) -> List[str]
Get list of display modes for a plugin.
Parameters:
plugin_id(str): Plugin identifier
Returns: List of display mode names
Example:
modes = self.plugin_manager.get_plugin_display_modes("football-scoreboard")
# Returns: ['nfl_live', 'nfl_recent', 'nfl_upcoming', ...]
Plugin Manifests
Access plugin manifests through self.plugin_manager.plugin_manifests:
# Get manifest for a plugin
manifest = self.plugin_manager.plugin_manifests.get(self.plugin_id, {})
# Access manifest fields
display_modes = manifest.get('display_modes', [])
version = manifest.get('version')
Inter-Plugin Communication
Plugins can communicate with each other through the Plugin Manager:
Example - Getting data from another plugin:
def update(self):
# Get weather plugin
weather_plugin = self.plugin_manager.get_plugin("weather")
if weather_plugin and hasattr(weather_plugin, 'current_temp'):
self.temp = weather_plugin.current_temp
Example - Checking if another plugin is enabled:
enabled_plugins = self.plugin_manager.get_enabled_plugins()
if "weather" in enabled_plugins:
# Weather plugin is enabled
pass
Best Practices
Caching
-
Use appropriate cache keys: Include plugin ID and data type in keys
cache_key = f"{self.plugin_id}_weather_current" -
Use cache strategies: Prefer
get_cached_data_with_strategy()for automatic TTL selectiondata = self.cache_manager.get_cached_data_with_strategy( f"{self.plugin_id}_data", data_type="weather" ) -
Handle cache misses: Always check for
Nonereturn valuescached = self.cache_manager.get(key, max_age=3600) if not cached: cached = self._fetch_from_api() self.cache_manager.set(key, cached)
Display Rendering
-
Always call update_display(): After drawing content, call
update_display()self.display_manager.draw_text("Hello", x=10, y=10) self.display_manager.update_display() # Required! -
Use clear() appropriately: Only clear when necessary (e.g.,
force_clear=True)def display(self, force_clear=False): if force_clear: self.display_manager.clear() # Draw content... self.display_manager.update_display() -
Handle scrolling state: If your plugin scrolls, use scrolling state methods
self.display_manager.set_scrolling_state(True) # Scroll content... self.display_manager.set_scrolling_state(False)
Error Handling
-
Log errors appropriately: Use
self.loggerfor plugin-specific loggingtry: data = self._fetch_data() except Exception as e: self.logger.error(f"Failed to fetch data: {e}") return -
Handle missing data gracefully: Provide fallback displays when data is unavailable
if not self.data: self.display_manager.draw_text("No data available", x=10, y=16) self.display_manager.update_display() return
See Also
- BasePlugin Source - Base plugin implementation
- Display Manager Source - Display manager implementation
- Cache Manager Source - Cache manager implementation
- Plugin Manager Source - Plugin manager implementation
- Plugin Development Guide - Complete development guide
- Advanced Plugin Development - Advanced patterns and examples