From df4e501a0a97256376a555e7e635723296808aba Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 25 Nov 2021 20:38:00 -0600 Subject: [PATCH] Add auto_screen_carousel_secs preference --- radioconfig.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/radioconfig.proto b/radioconfig.proto index 762910b..3d6d3e4 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -554,6 +554,12 @@ message RadioConfig { * Useful for devices with finicky ADC issues on the battery sense pins. */ bool is_always_powered = 151; + + /* + * Automatically toggles to the next page on the screen like a carousel, based the specified interval in seconds. + * Potentially useful for devices without user buttons. + */ + uint32 auto_screen_carousel_secs = 152; } UserPreferences preferences = 1;