Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable, behaviour-affecting changes land here. Format follows
uses lightweight semantic-ish versioning (bumped on any user-visible
change, not on every commit).

## v0.29.10 — 2026-06

### Changed

- **Ambient idle clock now floats in after 120 s** without a touch (was 45 s).

## v0.29.9 — 2026-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion firmware/src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ constexpr uint16_t DRAW_BUF_LINES = 40;
constexpr uint32_t DIM_AFTER_MS = 60UL * 1000UL;
// Ambient idle clock: floats over the current screen once the panel has been
// untouched this long AND the whole farm is quiet (nothing printing/faulted).
constexpr uint32_t AMBIENT_AFTER_MS = 45UL * 1000UL;
constexpr uint32_t AMBIENT_AFTER_MS = 120UL * 1000UL;

// Boot "loading" splash: the longest it stays up before giving way to the
// (possibly offline) dashboard, so an unreachable Bambuddy can't pin it forever.
Expand Down
Loading