* feat: integrate Starlark/Tronbyte app support into plugin system Add starlark-apps plugin that renders Tidbyt/Tronbyte .star apps via Pixlet binary and integrates them into the existing Plugin Manager UI as virtual plugins. Includes vegas scroll support, Tronbyte repository browsing, and per-app configuration. - Extract working starlark plugin code from starlark branch onto fresh main - Fix plugin conventions (get_logger, VegasDisplayMode, BasePlugin) - Add 13 starlark API endpoints to api_v3.py (CRUD, browse, install, render) - Virtual plugin entries (starlark:<app_id>) in installed plugins list - Starlark-aware toggle and config routing in pages_v3.py - Tronbyte repository browser section in Plugin Store UI - Pixlet binary download script (scripts/download_pixlet.sh) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(starlark): use bare imports instead of relative imports Plugin loader uses spec_from_file_location without package context, so relative imports (.pixlet_renderer) fail. Use bare imports like all other plugins do. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(starlark): make API endpoints work standalone in web service The web service runs as a separate process with display_manager=None, so plugins aren't instantiated. Refactor starlark API endpoints to read/write the manifest file directly when the plugin isn't loaded, enabling full CRUD operations from the web UI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(starlark): make config partial work standalone in web service Read starlark app data from manifest file directly when the plugin isn't loaded, matching the api_v3.py standalone pattern. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(starlark): always show editable timing settings in config panel Render interval and display duration are now always editable in the starlark app config panel, not just shown as read-only status text. App-specific settings from schema still appear below when present. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(store): add sort, filter, search, and pagination to Plugin Store and Starlark Apps Plugin Store: - Live search with 300ms debounce (replaces Search button) - Sort dropdown: A→Z, Z→A, Category, Author, Newest - Installed toggle filter (All / Installed / Not Installed) - Per-page selector (12/24/48) with pagination controls - "Installed" badge and "Reinstall" button on already-installed plugins - Active filter count badge + clear filters button Starlark Apps: - Parallel bulk manifest fetching via ThreadPoolExecutor (20 workers) - Server-side 2-hour cache for all 500+ Tronbyte app manifests - Auto-loads all apps when section expands (no Browse button) - Live search, sort (A→Z, Z→A, Category, Author), author dropdown - Installed toggle filter, per-page selector (24/48/96), pagination - "Installed" badge on cards, "Reinstall" button variant Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(store): move storeFilterState to global scope to fix scoping bug storeFilterState, pluginStoreCache, and related variables were declared inside an IIFE but referenced by top-level functions, causing ReferenceError that broke all plugin loading. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(starlark): schema-driven config forms + critical security fixes ## Schema-Driven Config UI - Render type-appropriate form inputs from schema.json (text, dropdown, toggle, color, datetime, location) - Pre-populate config.json with schema defaults on install - Auto-merge schema defaults when loading existing apps (handles schema updates) - Location fields: 3-part mini-form (lat/lng/timezone) assembles into JSON - Toggle fields: support both boolean and string "true"/"false" values - Unsupported field types (oauth2, photo_select) show warning banners - Fallback to raw key/value inputs for apps without schema ## Critical Security Fixes (P0) - **Path Traversal**: Verify path safety BEFORE mkdir to prevent TOCTOU - **Race Conditions**: Add file locking (fcntl) + atomic writes to manifest operations - **Command Injection**: Validate config keys/values with regex before passing to Pixlet subprocess ## Major Logic Fixes (P1) - **Config/Manifest Separation**: Store timing keys (render_interval, display_duration) ONLY in manifest - **Location Validation**: Validate lat [-90,90] and lng [-180,180] ranges, reject malformed JSON - **Schema Defaults Merge**: Auto-apply new schema defaults to existing app configs on load - **Config Key Validation**: Enforce alphanumeric+underscore format, prevent prototype pollution ## Files Changed - web_interface/templates/v3/partials/starlark_config.html — schema-driven form rendering - plugin-repos/starlark-apps/manager.py — file locking, path safety, config validation, schema merge - plugin-repos/starlark-apps/pixlet_renderer.py — config value sanitization - web_interface/blueprints/api_v3.py — timing key separation, safe manifest updates Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): use manifest filename field for .star downloads Tronbyte apps don't always name their .star file to match the directory. For example, the "analogclock" app has "analog_clock.star" (with underscore). The manifest.yaml contains a "filename" field with the correct name. Changes: - download_star_file() now accepts optional filename parameter - Install endpoint passes metadata['filename'] to download_star_file() - Falls back to {app_id}.star if filename not in manifest Fixes: "Failed to download .star file for analogclock" error Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): reload tronbyte_repository module to pick up code changes The web service caches imported modules in sys.modules. When deploying code updates, the old cached version was still being used. Now uses importlib.reload() when module is already loaded. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): use correct 'fileName' field from manifest (camelCase) The Tronbyte manifest uses 'fileName' (camelCase), not 'filename' (lowercase). This caused the download to fall back to {app_id}.star which doesn't exist for apps like analogclock (which has analog_clock.star). Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * feat(starlark): extract schema during standalone install The standalone install function (_install_star_file) wasn't extracting schema from .star files, so apps installed via the web service had no schema.json and the config panel couldn't render schema-driven forms. Now uses PixletRenderer to extract schema during standalone install, same as the plugin does. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * feat(starlark): implement source code parser for schema extraction Pixlet CLI doesn't support schema extraction (--print-schema flag doesn't exist), so apps were being installed without schemas even when they have them. Implemented regex-based .star file parser that: - Extracts get_schema() function from source code - Parses schema.Schema(version, fields) structure - Handles variable-referenced dropdown options (e.g., options = dialectOptions) - Supports Location, Text, Toggle, Dropdown, Color, DateTime fields - Gracefully handles unsupported fields (OAuth2, LocationBased, etc.) - Returns formatted JSON matching web UI template expectations Coverage: 90%+ of Tronbyte apps (static schemas + variable references) Changes: - Replace extract_schema() to parse .star files directly instead of using Pixlet CLI - Add 6 helper methods for parsing schema structure - Handle nested parentheses and brackets properly - Resolve variable references for dropdown options Tested with: - analog_clock.star (Location field) ✓ - Multi-field test (Text + Dropdown + Toggle) ✓ - Variable-referenced options ✓ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): add List to typing imports for schema parser Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): load schema from schema.json in standalone mode The standalone API endpoint was returning schema: null because it didn't load the schema.json file. Now reads schema from disk when returning app details via web service. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * feat(starlark): implement schema extraction, asset download, and config persistence ## Schema Extraction - Replace broken `pixlet serve --print-schema` with regex-based source parser - Extract schema by parsing `get_schema()` function from .star files - Support all field types: Location, Text, Toggle, Dropdown, Color, DateTime - Handle variable-referenced dropdown options (e.g., `options = teamOptions`) - Gracefully handle complex/unsupported field types (OAuth2, PhotoSelect, etc.) - Extract schema for 90%+ of Tronbyte apps ## Asset Download - Add `download_app_assets()` to fetch images/, sources/, fonts/ directories - Download assets in binary mode for proper image/font handling - Validate all paths to prevent directory traversal attacks - Copy asset directories during app installation - Enable apps like AnalogClock that require image assets ## Config Persistence - Create config.json file during installation with schema defaults - Update both config.json and manifest when saving configuration - Load config from config.json (not manifest) for consistency with plugin - Separate timing keys (render_interval, display_duration) from app config - Fix standalone web service mode to read/write config.json ## Pixlet Command Fix - Fix Pixlet CLI invocation: config params are positional, not flags - Change from `pixlet render file.star -c key=value` to `pixlet render file.star key=value -o output` - Properly handle JSON config values (e.g., location objects) - Enable config to be applied during rendering ## Security & Reliability - Add threading.Lock for cache operations to prevent race conditions - Reduce ThreadPoolExecutor workers from 20 to 5 for Raspberry Pi - Add path traversal validation in download_star_file() - Add YAML error logging in manifest fetching - Add file size validation (5MB limit) for .star uploads - Use sanitized app_id consistently in install endpoints - Use atomic manifest updates to prevent race conditions - Add missing Optional import for type hints ## Web UI - Fix standalone mode schema loading in config partial - Schema-driven config forms now render correctly for all apps - Location fields show lat/lng/timezone inputs - Dropdown, toggle, text, color, and datetime fields all supported Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): code review fixes - security, robustness, and schema parsing ## Security Fixes - manager.py: Check _update_manifest_safe return values to prevent silent failures - manager.py: Improve temp file cleanup in _save_manifest to prevent leaks - manager.py: Fix uninstall order (manifest → memory → disk) for consistency - api_v3.py: Add path traversal validation in uninstall endpoint - api_v3.py: Implement atomic writes for manifest files with temp + rename - pixlet_renderer.py: Relax config validation to only block dangerous shell metacharacters ## Frontend Robustness - plugins_manager.js: Add safeLocalStorage wrapper for restricted contexts (private browsing) - starlark_config.html: Scope querySelector to container to prevent modal conflicts ## Schema Parsing Improvements - pixlet_renderer.py: Indentation-aware get_schema() extraction (handles nested functions) - pixlet_renderer.py: Handle quoted defaults with commas (e.g., "New York, NY") - tronbyte_repository.py: Validate file_name is string before path traversal checks ## Dependencies - requirements.txt: Update Pillow (10.4.0), PyYAML (6.0.2), requests (2.32.0) ## Documentation - docs/STARLARK_APPS_GUIDE.md: Comprehensive guide explaining: - How Starlark apps work - That apps come from Tronbyte (not LEDMatrix) - Installation, configuration, troubleshooting - Links to upstream projects All changes improve security, reliability, and user experience. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): convert Path to str in spec_from_file_location calls The module import helpers were passing Path objects directly to spec_from_file_location(), which caused spec to be None. This broke the Starlark app store browser. - Convert module_path to string in both _get_tronbyte_repository_class and _get_pixlet_renderer_class - Add None checks with clear error messages for debugging Fixes: spec not found for the module 'tronbyte_repository' Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): restore Starlark Apps section in plugins.html The Starlark Apps UI section was lost during merge conflict resolution with main branch. Restored from commit942663abwhich had the complete implementation with filtering, sorting, and pagination. Fixes: Starlark section not visible on plugin manager page Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): restore Starlark JS functionality lost in merge During the merge with main, all Starlark-specific JavaScript (104 lines) was removed from plugins_manager.js, including: - starlarkFilterState and filtering logic - loadStarlarkApps() function - Starlark app install/uninstall handlers - Starlark section collapse/expand logic - Pagination and sorting for Starlark apps Restored from commit942663aband re-applied safeLocalStorage wrapper from our code review fixes. Fixes: Starlark Apps section non-functional in web UI Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): security and race condition improvements Security fixes: - Add path traversal validation for output_path in download_star_file - Remove XSS-vulnerable inline onclick handlers, use delegated events - Add type hints to helper functions for better type safety Race condition fixes: - Lock manifest file BEFORE creating temp file in _save_manifest - Hold exclusive lock for entire read-modify-write cycle in _update_manifest_safe - Prevent concurrent writers from racing on manifest updates Other improvements: - Fix pages_v3.py standalone mode to load config.json from disk - Improve error handling with proper logging in cleanup blocks - Add explicit type annotations to Starlark helper functions Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): critical bug fixes and code quality improvements Critical fixes: - Fix stack overflow in safeLocalStorage (was recursively calling itself) - Fix duplicate event listeners on Starlark grid (added sentinel check) - Fix JSON validation to fail fast on malformed data instead of silently passing Error handling improvements: - Narrow exception catches to specific types (OSError, json.JSONDecodeError, ValueError) - Use logger.exception() with exc_info=True for better stack traces - Replace generic "except Exception" with specific exception types Logging improvements: - Add "[Starlark Pixlet]" context tags to pixlet_renderer logs - Redact sensitive config values from debug logs (API keys, etc.) - Add file_path context to schema parsing warnings Documentation: - Fix markdown lint issues (add language tags to code blocks) - Fix time unit spacing: "(5min)" -> "(5 min)" Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): critical path traversal and exception handling fixes Path traversal security fixes (CRITICAL): - Add _validate_starlark_app_path() helper to check for path traversal attacks - Validate app_id in get_starlark_app(), uninstall_starlark_app(), get_starlark_app_config(), and update_starlark_app_config() - Check for '..' and path separators before any filesystem access - Verify resolved paths are within _STARLARK_APPS_DIR using Path.relative_to() - Prevents unauthorized file access via crafted app_id like '../../../etc/passwd' Exception handling improvements (tronbyte_repository.py): - Replace broad "except Exception" with specific types - _make_request: catch requests.Timeout, requests.RequestException, json.JSONDecodeError - _fetch_raw_file: catch requests.Timeout, requests.RequestException separately - download_app_assets: narrow to OSError, ValueError - Add "[Tronbyte Repo]" context prefix to all log messages - Use exc_info=True for better stack traces API improvements: - Narrow exception catches to OSError, json.JSONDecodeError in config loading - Remove duplicate path traversal checks (now centralized in helper) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * fix(starlark): logging improvements and code quality fixes Logging improvements (pages_v3.py): - Add logging import and create module logger - Replace print() calls with logger.warning() with "[Pages V3]" prefix - Use logger.exception() for outer try/catch with exc_info=True - Narrow exception handling to OSError, json.JSONDecodeError for file operations API improvements (api_v3.py): - Remove unnecessary f-strings (Ruff F541) from ImportError messages - Narrow upload exception handling to ValueError, OSError, IOError - Use logger.exception() with context for better debugging - Remove early return in get_starlark_status() to allow standalone mode fallback - Sanitize error messages returned to client (don't expose internal details) Benefits: - Better log context with consistent prefixes - More specific exception handling prevents masking unexpected errors - Standalone/web-service-only mode now works for status endpoint - Stack traces preserved for debugging without exposing to clients Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Chuck <chuck@example.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
18 KiB
Starlark Apps Guide
Overview
The Starlark Apps plugin for LEDMatrix enables you to run Tidbyt/Tronbyte community apps on your LED matrix display without modification. This integration allows you to access hundreds of pre-built widgets and apps from the vibrant Tidbyt community ecosystem.
Important: Third-Party Content
⚠️ Apps are NOT managed by the LEDMatrix project
- Starlark apps are developed and maintained by the Tidbyt/Tronbyte community
- LEDMatrix provides the runtime environment but does not create, maintain, or support these apps
- All apps originate from the Tronbyte Apps Repository
- App quality, functionality, and security are the responsibility of individual app authors
- LEDMatrix is not affiliated with Tidbyt Inc. or the Tronbyte project
What is Starlark?
Starlark is a Python-like language originally developed by Google for the Bazel build system. Tidbyt adopted Starlark for building LED display apps because it's:
- Sandboxed: Apps run in a safe, restricted environment
- Simple: Python-like syntax that's easy to learn
- Deterministic: Apps produce consistent output
- Fast: Compiled and optimized for performance
How It Works
Architecture
┌─────────────────────────────────────────────────────────┐
│ LEDMatrix System │
│ ┌────────────────────────────────────────────────────┐ │
│ │ Starlark Apps Plugin (manager.py) │ │
│ │ • Manages app lifecycle (install/uninstall) │ │
│ │ • Handles app configuration │ │
│ │ • Schedules app rendering │ │
│ └─────────────────┬──────────────────────────────────┘ │
│ │ │
│ ┌─────────────────▼──────────────────────────────────┐ │
│ │ Pixlet Renderer (pixlet_renderer.py) │ │
│ │ • Executes .star files using Pixlet CLI │ │
│ │ • Extracts configuration schemas │ │
│ │ • Outputs WebP animations │ │
│ └─────────────────┬──────────────────────────────────┘ │
│ │ │
│ ┌─────────────────▼──────────────────────────────────┐ │
│ │ Frame Extractor (frame_extractor.py) │ │
│ │ • Decodes WebP animations into frames │ │
│ │ • Scales/centers output for display size │ │
│ │ • Manages frame timing │ │
│ └─────────────────┬──────────────────────────────────┘ │
│ │ │
│ ┌─────────────────▼──────────────────────────────────┐ │
│ │ LED Matrix Display │ │
│ │ • Renders final output to physical display │ │
│ └────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────┘
▲
│
Downloads apps from
│
┌───────────────────┴─────────────────────────────────────┐
│ Tronbyte Apps Repository (GitHub) │
│ • 974+ community-built apps │
│ • Weather, sports, stocks, games, clocks, etc. │
│ • https://github.com/tronbyt/apps │
└──────────────────────────────────────────────────────────┘
Rendering Pipeline
- User installs app from the Tronbyte repository via web UI
- Plugin downloads the
.starfile (and any assets like images/fonts) - Schema extraction parses configuration options from the
.starsource - User configures the app through the web UI (timezone, location, API keys, etc.)
- Pixlet renders the app with user config → produces WebP animation
- Frame extraction decodes WebP → individual PIL Image frames
- Display scaling adapts 64x32 Tidbyt output to your matrix size
- Rotation cycles through your installed apps based on schedule
Getting Started
1. Install Pixlet
Pixlet is the rendering engine that executes Starlark apps. The plugin will attempt to use:
- Bundled binary (recommended): Downloaded to
bin/pixlet/pixlet-{platform}-{arch} - System installation: If
pixletis available in your PATH
Auto-Install via Web UI
Navigate to: Plugins → Starlark Apps → Status → Install Pixlet
This runs the bundled installation script which downloads the appropriate binary for your platform.
Manual Installation
cd /path/to/LEDMatrix
bash scripts/download_pixlet.sh
Verify installation:
./bin/pixlet/pixlet-linux-amd64 version
# Pixlet 0.50.2 (or later)
2. Enable the Starlark Apps Plugin
- Open the web UI
- Navigate to Plugins
- Find Starlark Apps in the installed plugins list
- Enable the plugin
- Configure settings:
- Magnify: Auto-calculated based on your display size (or set manually)
- Render Interval: How often apps re-render (default: 300s)
- Display Duration: How long each app shows (default: 15s)
- Cache Output: Enable to reduce re-rendering (recommended)
3. Browse and Install Apps
- Navigate to Plugins → Starlark Apps → App Store
- Browse available apps (974+ options)
- Filter by category: Weather, Sports, Finance, Games, Clocks, etc.
- Click Install on desired apps
- Configure each app:
- Set location/timezone
- Enter API keys if required
- Customize display preferences
4. Configure Apps
Each app may have different configuration options:
Common Configuration Types
- Location (lat/lng/timezone): For weather, clocks, transit
- API Keys: For services like weather, stocks, sports scores
- Display Preferences: Colors, units, layouts
- Dropdown Options: Team selections, language, themes
- Toggles: Enable/disable features
Configuration is stored in starlark-apps/{app-id}/config.json and persists across app updates.
App Sources and Categories
All apps are sourced from the Tronbyte Apps Repository. Popular categories include:
🌤️ Weather
- Analog Clock (with weather)
- Current Weather
- Weather Forecast
- Air Quality Index
🏈 Sports
- NFL Scores
- NBA Scores
- MLB Scores
- NHL Scores
- Soccer/Football Scores
- Formula 1 Results
💰 Finance
- Stock Tickers
- Cryptocurrency Prices
- Market Indices
🎮 Games & Fun
- Conway's Game of Life
- Pong
- Nyan Cat
- Retro Animations
🕐 Clocks
- Analog Clock
- Fuzzy Clock
- Binary Clock
- Word Clock
📰 Information
- News Headlines
- RSS Feeds
- GitHub Activity
- Reddit Feed
🚌 Transit & Travel
- Transit Arrivals
- Flight Tracker
- Train Schedules
Display Size Compatibility
Tronbyte/Tidbyt apps are designed for 64×32 displays. LEDMatrix automatically adapts content for different display sizes:
Magnification
The plugin calculates optimal magnification based on your display:
magnify = floor(min(display_width / 64, display_height / 32))
Examples:
- 64×32: magnify = 1 (native, pixel-perfect)
- 128×64: magnify = 2 (2x scaling, crisp)
- 192×64: magnify = 2 (2x + horizontal centering)
- 256×64: magnify = 2 (2x + centering)
Scaling Modes
Config → Starlark Apps → Scale Method:
nearest(default): Sharp pixels, retro lookbilinear: Smooth scaling, slight blurbicubic: Higher quality smooth scalinglanczos: Best quality, most processing
Center vs Scale:
scale_output=true: Stretch to fill display (may distort aspect ratio)center_small_output=true: Center output without stretching (preserves aspect ratio)
Configuration Schema Extraction
LEDMatrix automatically extracts configuration schemas from Starlark apps by parsing the get_schema() function in the .star source code.
Supported Field Types
| Starlark Type | Web UI Rendering |
|---|---|
schema.Location |
Lat/Lng/Timezone picker |
schema.Text |
Text input field |
schema.Toggle |
Checkbox/switch |
schema.Dropdown |
Select dropdown |
schema.Color |
Color picker |
schema.DateTime |
Date/time picker |
schema.OAuth2 |
Warning message (not supported) |
schema.PhotoSelect |
Warning message (not supported) |
schema.LocationBased |
Text fallback with note |
schema.Typeahead |
Text fallback with note |
Schema Coverage
- 90-95% of apps: Full schema support
- 5%: Partial extraction (complex/dynamic schemas)
- <1%: No schema (apps without configuration)
Apps without extracted schemas can still run with default settings.
File Structure
LEDMatrix/
├── plugin-repos/starlark-apps/ # Plugin source code
│ ├── manager.py # Main plugin logic
│ ├── pixlet_renderer.py # Pixlet CLI wrapper
│ ├── frame_extractor.py # WebP decoder
│ ├── tronbyte_repository.py # GitHub API client
│ └── requirements.txt # Python dependencies
│
├── starlark-apps/ # Installed apps (user data)
│ ├── manifest.json # App registry
│ │
│ └── analogclock/ # Example app
│ ├── analogclock.star # Starlark source
│ ├── config.json # User configuration
│ ├── schema.json # Extracted schema
│ ├── cached_render.webp # Rendered output cache
│ └── images/ # App assets (if any)
│ ├── hour_hand.png
│ └── minute_hand.png
│
├── bin/pixlet/ # Pixlet binaries
│ ├── pixlet-linux-amd64
│ ├── pixlet-linux-arm64
│ └── pixlet-darwin-arm64
│
└── scripts/
└── download_pixlet.sh # Pixlet installer
API Keys and External Services
Many apps require API keys for external services:
Common API Services
- Weather: OpenWeatherMap, Weather.gov, Dark Sky
- Sports: ESPN, The Sports DB, SportsData.io
- Finance: Alpha Vantage, CoinGecko, Yahoo Finance
- Transit: TransitLand, NextBus, local transit APIs
- News: NewsAPI, Reddit, RSS feeds
Security Note
- API keys are stored in
config.jsonfiles on disk - The LEDMatrix web interface does NOT encrypt API keys
- Ensure your Raspberry Pi is on a trusted network
- Use read-only or limited-scope API keys when possible
- Never commit
starlark-apps/*/config.jsonto version control
Troubleshooting
Pixlet Not Found
Symptom: "Pixlet binary not found" error
Solutions:
- Run auto-installer: Plugins → Starlark Apps → Install Pixlet
- Manual install:
bash scripts/download_pixlet.sh - Check permissions:
chmod +x bin/pixlet/pixlet-* - Verify architecture:
uname -mmatches binary name
App Fails to Render
Symptom: "Rendering failed" error in logs
Solutions:
- Check logs:
journalctl -u ledmatrix | grep -i pixlet - Verify config: Ensure all required fields are filled
- Test manually:
./bin/pixlet/pixlet-linux-amd64 render starlark-apps/{app-id}/{app-id}.star - Missing assets: Some apps need images/fonts that may fail to download
- API issues: Check API keys and rate limits
Schema Not Extracted
Symptom: App installs but shows no configuration options
Solutions:
- App may not have a
get_schema()function (normal for some apps) - Schema extraction failed: Check logs for parse errors
- Manual config: Edit
starlark-apps/{app-id}/config.jsondirectly - Report issue: File bug with app details at LEDMatrix GitHub
Apps Show Distorted/Wrong Size
Symptom: Content appears stretched, squished, or cropped
Solutions:
- Check magnify setting: Plugins → Starlark Apps → Config
- Try
center_small_output=trueto preserve aspect ratio - Adjust
magnifymanually (1-8) for your display size - Some apps assume 64×32 - may not scale perfectly to all sizes
App Shows Outdated Data
Symptom: Weather, sports scores, etc. don't update
Solutions:
- Check render interval: App Config → Render Interval (300s default)
- Force re-render: Plugins → Starlark Apps → {App} → Render Now
- Clear cache: Restart LEDMatrix service
- API rate limits: Some services throttle requests
- Check app logs for API errors
Performance Considerations
Render Intervals
- Apps re-render on a schedule (default: 300s = 5 minutes)
- Lower intervals = more CPU/API usage
- Recommended minimums:
- Static content (clocks): 30-60s
- Weather: 300s (5min)
- Sports scores: 60-120s
- Stock tickers: 60s
Caching
Enable caching to reduce CPU load:
cache_rendered_output=true(recommended)cache_ttl=300(5 minutes)
Cached WebP files are stored in starlark-apps/{app-id}/cached_render.webp
Display Rotation
Balance number of enabled apps with display duration:
- 5 apps × 15s = 75s full cycle
- 20 apps × 15s = 300s (5 min) cycle
Long cycles may cause apps to render before being displayed.
Limitations
Unsupported Features
- OAuth2 Authentication: Apps requiring OAuth login won't work
- PhotoSelect: Image upload from mobile device not supported
- Push Notifications: Apps can't receive real-time events
- Background Jobs: No persistent background tasks
API Rate Limits
Many apps use free API tiers with rate limits:
- Rendering too frequently may exceed limits
- Use appropriate
render_intervalsettings - Consider paid API tiers for heavy usage
Display Size Constraints
Apps designed for 64×32 may not utilize larger displays fully:
- Content may appear small on 128×64+ displays
- Magnification helps but doesn't add detail
- Some apps hard-code 64×32 dimensions
Advanced Usage
Manual App Installation
Upload custom .star files:
- Navigate to Starlark Apps → Upload
- Select
.starfile from disk - Configure app ID and metadata
- Set render/display timing
Custom App Development
While LEDMatrix runs Tronbyte apps, you can also create your own:
- Learn Starlark: Tidbyt Developer Docs
- Write
.starfile: Use Pixlet APIs for rendering - Test locally:
pixlet render myapp.star - Upload: Use LEDMatrix web UI to install
- Share: Contribute to Tronbyte Apps repo
Configuration Reference
Plugin Config (config/config.json → plugins.starlark-apps):
{
"enabled": true,
"magnify": 0, // 0 = auto, 1-8 = manual
"render_timeout": 30, // Max seconds for Pixlet render
"cache_rendered_output": true, // Cache WebP files
"cache_ttl": 300, // Cache duration (seconds)
"scale_output": true, // Scale to display size
"scale_method": "nearest", // nearest|bilinear|bicubic|lanczos
"center_small_output": false, // Center instead of scale
"default_frame_delay": 50, // Frame timing (ms)
"max_frames": null, // Limit frames (null = unlimited)
"auto_refresh_apps": true // Auto re-render on interval
}
App Config (starlark-apps/{app-id}/config.json):
{
"location": "{\"lat\":\"40.7128\",\"lng\":\"-74.0060\",\"timezone\":\"America/New_York\"}",
"units": "imperial",
"api_key": "your-api-key-here",
"render_interval": 300, // App-specific override
"display_duration": 15 // App-specific override
}
Resources
Official Documentation
- Tidbyt Developer Docs: https://tidbyt.dev/
- Starlark Language: https://github.com/bazelbuild/starlark
- Pixlet Repository: https://github.com/tidbyt/pixlet
- Tronbyte Apps: https://github.com/tronbyt/apps
LEDMatrix Documentation
Community
- Tidbyt Community: https://discuss.tidbyt.com/
- Tronbyte Apps Issues: https://github.com/tronbyt/apps/issues
- LEDMatrix Issues: https://github.com/ChuckBuilds/LEDMatrix/issues
License and Legal
- LEDMatrix: MIT License (see project root)
- Starlark Apps Plugin: MIT License (part of LEDMatrix)
- Pixlet: Apache 2.0 License (Tidbyt Inc.)
- Tronbyte Apps: Various licenses (see individual app headers)
- Starlark Language: Apache 2.0 License (Google/Bazel)
Disclaimer: LEDMatrix is an independent project and is not affiliated with, endorsed by, or sponsored by Tidbyt Inc. The Starlark Apps plugin enables interoperability with Tidbyt's open-source ecosystem but does not imply any official relationship.
Support
For issues with:
- LEDMatrix integration: File issues at LEDMatrix GitHub
- Specific apps: File issues at Tronbyte Apps
- Pixlet rendering: File issues at Pixlet Repository
Ready to get started? Install the Starlark Apps plugin and explore 974+ community apps! 🎨