From 298380b8d26fd8fa299130d8d5b2ae37207a4e6e Mon Sep 17 00:00:00 2001 From: Ken Sanislo Date: Sun, 10 May 2026 16:54:28 -0700 Subject: [PATCH] HeadsetAutoSleep: restore 'minutes' in description Prior empirical testing confirmed byte[0] (the user-facing slot) is in minutes; only the other two slots (preserved via RMW) have uncertain units. --- lib/logitech_receiver/settings_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/settings_templates.py b/lib/logitech_receiver/settings_templates.py index f18aae7c..d567e809 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -1793,7 +1793,7 @@ class _AutoSleepRangeValidator(settings_validator.RangeValidator): class HeadsetAutoSleep(settings.Setting): name = "headset-auto-sleep" label = _("Auto Sleep Timeout") - description = _("Headset idle-timer slot (0 = disabled). Units are device-specific.") + description = _("Idle time in minutes before the headset enters sleep mode (0 = disabled).") feature = _F.CENTURION_AUTO_SLEEP rw_options = {"read_fnid": 0x00, "write_fnid": 0x10} validator_class = _AutoSleepRangeValidator