Hello there
I just have a small question is there a way to give me a popup like “Successfully changed value!” after I change an input_number over lovelace and close the numpad on smartphone? I just need any type of feedback, popup would be the first I could think off.
I currently got this automation after changing input_number:
- alias: Waermepumpe Warmwasser Soll Set
trigger:
platform: state
entity_id: input_number.waermepumpe_wasser_soll
condition:
- "{{ states('input_number.waermepumpe_wasser_soll') != states('luxtronik.haus_warmwasser_soll') }}"
action:
service: luxtronik.write
data_template:
parameter: ID_Soll_BWS_akt
value: "{{ states('input_number.waermepumpe_wasser_soll') }}"
- alias: Waermepumpe Warmwasser Soll Update
trigger:
platform: state
entity_id: luxtronik.haus_warmwasser_soll
condition:
- "{{ trigger.from_state.state != trigger.to_state.state}}"
- "{{ states('input_number.waermepumpe_wasser_soll') != trigger.to_state.state}}"
action:
service: input_number.set_value
data_template:
entity_id: input_number.waermepumpe_wasser_soll
value: "{{ states('luxtronik.haus_warmwasser_soll') }}"
Is there a way maybe over browser_mod?