Commit Graph

9 Commits

Author SHA1 Message Date
4da32466a8 feat: add debug touch drawing function and fix dashboard layout calculations 2026-02-19 17:48:39 -08:00
dd1c13fbbc refactor: replace hint feedback with debug crosshair 2026-02-19 15:12:02 -08:00
ec8ec4cd18 refactor(Style): Add font abstraction and CSS-like styling constants 2026-02-19 14:48:25 -08:00
3dc66a536e feat(docs): update README and AGENTS.md with RTK instructions 2026-02-19 13:01:55 -08:00
bfba3b02fd feat(doorbell): add staged boot sequence and refactor main loop 2026-02-18 00:35:48 -08:00
8e39a1f23c refactor: add active parameter to updateHint method signature
1. **Method Signature Update**: Added `bool active` parameter to `updateHint()` method across the display driver hierarchy:
   - `DisplayManager::updateHint(x, y, active)` - delegates to driver
   - `DisplayDriverTFT::updateHint(x, y, active)` - override implementation
   - `DisplayDriverGFX::updateHint(x, y, active)` - override implementation

2. **Code Formatting**: `DisplayManager.h` reformatted (whitespace/comment style changes only)

- **Breaking Change**: All existing `updateHint(x, y)` calls will fail to compile until updated to include the `active` parameter
- **Enhanced Control**: Callers can now explicitly show/hide touch hints rather than just updating position, enabling better touch feedback UX (e.g., hide hint on touch release)
- **API Consistency**: All implementations in the driver hierarchy now enforce the same signature
2026-02-17 05:23:43 -08:00
8e9bd18676 style: apply consistent code formatting and spacing 2026-02-17 04:15:48 -08:00
0ace263324 feat(display): draw hint animation at touch position instead of center 2026-02-17 03:49:34 -08:00
838afaa36f consolidate sketches 2026-02-16 19:08:47 -08:00