feat(ui): standardize module screens + add WiFi/BLE scan-list icons - #2815
Open
vnxdtzip wants to merge 1 commit into
Open
feat(ui): standardize module screens + add WiFi/BLE scan-list icons#2815vnxdtzip wants to merge 1 commit into
vnxdtzip wants to merge 1 commit into
Conversation
Brings a batch of module screens onto the standard Bruce interface and adds signal/lock icons to the scan lists, matching the reworked BLE Suite / RF spectrum look. Screens restyled to drawMainBorderWithTitle / printSubtitle / padprintln and theme colors (getColorVariation) instead of hardcoded TFT_* and hand-placed cursors: - reverseShell, rf/emit, rf/record, NRF24/nrf_info, ir/ir_read, rfid/rfid125, ethernet/HostInfo, others/timer, ir/ir_jammer, others/clicker, others/u2f, badusb_ble/ducky_typer (presenter) Icons (opt-in, existing menus unchanged): - New shared helpers drawSignalBars() and drawLockIcon() in core/display. - Option gains optional iconRssi / iconLock fields; loopOptions' drawOptions renders them right-aligned per row (both default off). - Applied to WiFi lists (Connect, Deauther x2, Beacon/Target) with lock + signal, and BLE lists (Scan, Ninebot) with signal. Builds clean for m5stack-cardputer. RF Scan capture-list icon and the NRF24 CH Hopper (BruceDevices#2801) are intentionally out of scope here. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Author
Ninja-jr
pushed a commit
to Ninja-jr/Bruce_firmware
that referenced
this pull request
Aug 22, 2026
Ninja-jr
pushed a commit
to Ninja-jr/Bruce_firmware
that referenced
this pull request
Aug 22, 2026
Ninja-jr
pushed a commit
to Ninja-jr/Bruce_firmware
that referenced
this pull request
Aug 22, 2026
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.
Proposed Changes
Brings a batch of module screens onto the standard Bruce interface and adds signal/lock icons to the scan lists, matching the look of the reworked BLE Suite / RF spectrum modules.
Screens restyled to
drawMainBorderWithTitle/printSubtitle/padprintlnwith theme colors (getColorVariation) instead of hardcodedTFT_*constants and hand-placed cursors:nrf_info, ir/ir_read, rfid/rfid125, ethernet/HostInfo, others/timer, ir/ir_jammer, others/clicker, others/u2f, badusb_ble/ducky_typer (presenter)Scan-list icons (opt-in, so existing menus are untouched):
drawSignalBars()anddrawLockIcon()incore/display.Optiongains optionaliconRssi/iconLockfields;loopOptions'drawOptionsrenders them right-aligned per row (both default to off).#/dBm text now shown by the icons.Types of Changes
UI/UX improvement + small shared helpers. No breaking changes — the icon fields are opt-in and default off, so every existing menu renders exactly as before.
Verification
Flash a device and open the restyled screens (IR Jammer, AutoClicker, Timer, U2F, RFID 125kHz, RF Record/Emit, Reverse Shell, HostInfo, nRF Info, Presenter) — each now uses the standard titled frame and theme colors. In WiFi (Connect / Deauther / Beacon) each network shows a padlock (closed = secured, open = open) and a 4-bar signal meter; in BLE (Scan / Ninebot) each device shows a signal meter.
Testing
Builds clean for
m5stack-cardputer. Manually exercised on a Cardputer (ADV). No automated tests for the UI path.Linked Issues
None. Follow-up to the BLE Suite / RF spectrum interface work.
User-Facing Change
Further Comments
Scoped to what applies on
dev: the RF Scan capture-list icon (signal + saved bookmark) is intentionally left out because it depends on the "RF Scan/copy capture list" rework that isn't ondevyet — it can follow once that lands. The NRF24 CH Hopper is a separate PR (#2801).