Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- esphome:
- name: ev-generale-acqua
- friendly_name: ev generale acqua
- esp8266:
- board: d1_mini
- restore_from_flash: True # richiesto su ESP8266 per abilitare il ripristino delle impostazioni del dispositivo al riavvio
- preferences:
- flash_write_interval: 5min # impostare su 5 minuti per evitare che il modulo flash integrato si usuri troppo rapidamente
- # Enable Home Assistant API
- api:
- encryption:
- key: "AhVXUaDMwDlS+MuLMtEidl077FDZu6zqFRE8qyFZg7c="
- ota:
- - platform: esphome
- password: "10e9783a86a57a4ea0a23c222a6c1558"
- wifi:
- ssid: !secret wifi_ssid
- password: !secret wifi_password
- # Enable fallback hotspot (captive portal) in case wifi connection fails
- ap:
- ssid: "Ev-Generale-Acqua"
- password: "I0pA6LKxlsRu"
- captive_portal:
- web_server:
- port: 80
- version: 3
- include_internal: true
- local: true
- # Enable logging
- logger:
- level: DEBUG
- sensor:
- #WIFI
- - platform: wifi_signal
- name: "WiFi Signal EV generale acqua"
- update_interval: 15s
- filters:
- - sliding_window_moving_average:
- window_size: 15
- send_every: 15
- send_first_at: 15
- icon: mdi:wifi
- #RESTART
- button:
- - platform: restart
- name: "Restart"
- #COMANDO EV
- switch:
- - platform: gpio
- pin:
- number: D5
- inverted: False
- restore_mode: RESTORE_DEFAULT_OFF
- id: EV_generale_acqua
- name: "Comando EV generale acqua"
- icon: mdi:water-pump
- #STATO VALVOLA
- binary_sensor:
- - platform: switch
- name: "Stato valvola"
- id: stato_valvola
- source_id: EV_generale_acqua
- icon: mdi:valve-open
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement