From 0cd5ec8500e02f506cddf4f69757ca5beab4290a Mon Sep 17 00:00:00 2001 From: clabeuhtegrite <82087430+clabeuhtegrite@users.noreply.github.com> Date: Mon, 8 Jun 2026 21:36:31 +0200 Subject: [PATCH] tweak(ui): ambient idle clock after 120 s (was 45 s) Co-Authored-By: Claude Opus 4.8 --- CHANGELOG.md | 6 ++++++ firmware/src/config.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e4b260..f370bb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/firmware/src/config.h b/firmware/src/config.h index ce106e0..5fd6bc6 100644 --- a/firmware/src/config.h +++ b/firmware/src/config.h @@ -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.