Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. - alias: 'Warn if Automower Stuck'
  2. initial_state: 'off'
  3. trigger:
  4. platform: numeric_state
  5. entity_id: sensor.smarta_pluggen_power #This is the current power for the smartplug charging the automower
  6. # value_template: '{{ state.attributes.power_consumption }}'
  7. below: 20 #if it has not been above 20W for 90 minutes it has not entered charging
  8. for:
  9. minutes: 5
  10. condition:
  11. condition: time #The automower only runs between 07-19
  12. after: '07:00:00'
  13. before: '19:00:00'
  14. action:
  15. service: notify.FAMILJENS_TELEFONER
  16. data:
  17. message: 'Gräsklipparen har fastnat! Hjälp stackaren!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement