lacrima08

Untitled

Sep 26th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. ## Ping internet
  2. - binary_sensor:
  3. - name: "Etat de la connexion internet"
  4. device_class: connectivity
  5. unique_id: 3db54aa8-eff8-451d-80b4-7954043ec877
  6. delay_off: "00:01:00"
  7. state: >
  8. {% if is_state("binary_sensor.ping_google", "on") and is_state("binary_sensor.ping_free", "on") %}
  9. on
  10. {% else %}
  11. off
  12. {% endif %}
  13. icon: >
  14. {% if is_state("binary_sensor.is_internet_connection_ok", "off") %}
  15. mdi:mdi-lan-disconnect
  16. {% else %}
  17. mdi:lan-connect
  18. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment