diff --git a/docs/ReleaseNotes.md b/docs/ReleaseNotes.md index 867cf08..928930d 100644 --- a/docs/ReleaseNotes.md +++ b/docs/ReleaseNotes.md @@ -36,7 +36,7 @@ Since in this update lots of input to the blueprint changed, we highly recommend 7. Service `esphome.xxxxx_qr_code` is deprecated. It was replaced by service `qrcode` which can be used for changing the QRcode value even when the QRcode page is not visible (useful when using dynamic Wi-Fi credentials). 8. Removed switches "Relay 1 Local Fallback" and "Relay 2 Local Fallback", together with the relay fallback inputs. Now when you assign your panel's relay to it's respective button the control will be fully local and therefore will have the same behavior as the "fallback" in previous versions. 9. The "Hardware button long press hold delay" input was removed and the delay (800ms) is now hard coded in ESPHome. -10. The service `esphome.xxxxx_wake_up_display` changes its parameters and now uses `reset_timer: bool` to indicate if the timeout timer (to move back to Home page) should be reset. +10. The service `esphome.xxxxx_wake_up_display` was deprecated. Please use `esphome.xxxxx_wake_up` instead which uses the parameter `reset_timer: bool` to indicate if the timeout timer (to move back to Home page) should be reset. 11. To be deprecated soon: - Old color selection (based in a text input where you typed a number).
The icons colors selected before the implementation of the color picker (when it was about typing a number) will be deprecated soon, so if you haven't done this yet, please select the color using the new color selector. Open the Blueprint and if the colors are shown, you are good, otherwise, please select a color. - The panel selection based on a text box (where you manually typed the panel name).
The new device selection was introduce a few releases ago and is more reliable. The previous selections are still valid, but requires extra processing every time the automation is triggered, so it will be removed.
If you can see your device name on the blueprint settings screen, you are good, otherwise, pick your panel from the new drop down list. diff --git a/nspanel_blueprint.yaml b/nspanel_blueprint.yaml index 118ac7b..c653284 100644 --- a/nspanel_blueprint.yaml +++ b/nspanel_blueprint.yaml @@ -3545,7 +3545,7 @@ variables: page_home_settings: 'esphome.{{ nspanel_name }}_page_home_settings' qrcode: 'esphome.{{ nspanel_name }}_qrcode' alarm_settings: 'esphome.{{ nspanel_name }}_alarm_settings' - wake_up_display: 'esphome.{{ nspanel_name }}_wake_up_display' + wake_up: 'esphome.{{ nspanel_name }}_wake_up' icon: domain: automation: "\uF6FC" #F6FC @@ -9231,7 +9231,7 @@ action: - "{{ trigger.event.data.old_state.state == 'on' }}" - "{{ trigger.event.data.new_state.state == 'off' }}" sequence: - service: '{{ nextion.command.wake_up_display }}' + service: '{{ nextion.command.wake_up }}' data: reset_timer: true continue_on_error: true diff --git a/nspanel_esphome.yaml b/nspanel_esphome.yaml index 91b2082..a253953 100644 --- a/nspanel_esphome.yaml +++ b/nspanel_esphome.yaml @@ -363,7 +363,7 @@ api: } ##### SERVICE TO WAKE UP THE DISPLAY ##### - - service: wake_up_display + - service: wake_up variables: reset_timer: bool then: