Add boot logo splash, on-device Button Test screen, and firmware version - #51
Merged
Merged
Conversation
…e version - Show the Snips logo on the OLED for 1.2s at boot, before the existing text confirmation, so it's clear the device is powering up. - Add a "Button Test" menu screen for hardware bring-up: shows the name of the last button pressed (all 12, including nav-stolen ones), with a persistent "Bumper = exit" line. - Show firmware version (git describe, injected at build time) on the Device Info screen. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
graphics/snips-logo.png's alpha channel down to 48x64 (1-bit, packed forAdafruit_GFX::drawBitmap()).git describe --tags --always --dirtyand injected at build time (scripts/firmware_version.py) — no tags exist yet so it currently shows the short commit hash, but it'll pick up real version tags automatically with no code changes once those exist. Native test builds fall back to a fixed"dev"string.Buttons::name()(was duplicated inline inSnipsController.ino) so both Serial logging and the new Button Test screen share one table.Test plan
pio test -e native— 262/262 passinggcovrline coverage 97.8% (threshold 90%)pio run -e esp32s3— builds clean, firmware embeds the git-derived version string (verified viastringson the built ELF)🤖 Generated with Claude Code