Cocktus

Untitled

Mar 2nd, 2023 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # KITCHEN
  2. - binary_sensor:
  3. - name: "Kitchen Cleaning"
  4. state: "{{this.attributes.cleaning_need}}"
  5. attributes:
  6. room_id: "14"
  7. timestamp: "1677124229"
  8. name: "keittiö"
  9. days_since: >
  10. {% set today = now().date() %}
  11. {% set last_cleaned = this.attributes.timestamp %}
  12. {% set days_since = (today - as_datetime(last_cleaned).date()).days %}
  13. cleaning_need: >
  14. {{this.attributes.days_since >= 3}}
Add Comment
Please, Sign In to add comment