diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 33d88e1..e16182b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -78,6 +78,7 @@ wifi: 11. Add swipe control to screensaver page 12. Enhanced control for automation entities on buttons 13. Dual thermostat controller support (add-on) +14. Enhanced timeout flexibility for Sleep, Page fallback, and Dimming settings   ## Details of noteworthy changes @@ -181,6 +182,10 @@ Users can configure their heating and cooling settings independently, providing #### Note to Users: This feature enhances the capabilities of the NSPanel without compromising its existing functionalities. Users who previously used the NSPanel for single-mode (either heating or cooling) control can now explore dual-mode options for a more comprehensive climate control solution. +  +### 14. Enhanced timeout flexibility for Sleep, Page fallback, and Dimming settings +We have improved the functionality of our system by enhancing the timeout flexibility for Sleep, Page Fallback, and Dimming settings. The previous timeout limit of 300 seconds has been significantly expanded, offering users more control and customization options for these specific features. This enhancement allows for a wider range of use cases, catering to the needs of those who require extended periods for these settings, while still maintaining the option for shorter durations. +   ## What's Next? Discover what's next and what we are working on right now in our [Milestones](https://github.com/Blackymas/NSPanel_HA_Blueprint/milestones?direction=asc&sort=due_date) diff --git a/advanced/esphome/nspanel_esphome_core.yaml b/advanced/esphome/nspanel_esphome_core.yaml index bde9c75..55b46a0 100644 --- a/advanced/esphome/nspanel_esphome_core.yaml +++ b/advanced/esphome/nspanel_esphome_core.yaml @@ -1090,7 +1090,7 @@ number: id: timeout_page entity_category: config min_value: 0 - max_value: 300 + max_value: 86400 initial_value: 15 step: 1 restore_value: true @@ -1104,7 +1104,7 @@ number: id: timeout_dim entity_category: config min_value: 0 - max_value: 300 + max_value: 86400 initial_value: 30 step: 1 restore_value: true @@ -1118,7 +1118,7 @@ number: id: timeout_sleep entity_category: config min_value: 0 - max_value: 300 + max_value: 86400 initial_value: 60 step: 1 restore_value: true