45 lines
810 B
YAML
45 lines
810 B
YAML
esphome:
|
|
name: heating-temperature-probes
|
|
friendly_name: Heating temperature probes
|
|
|
|
esp32:
|
|
board: esp32-c3-devkitm-1
|
|
framework:
|
|
type: esp-idf
|
|
|
|
# Enable log
|
|
logger:
|
|
|
|
# Enable Home Assistant API
|
|
api:
|
|
encryption:
|
|
key: !secret sensor-heating-encryption-key
|
|
|
|
ota:
|
|
- platform: esphome
|
|
password: !secret sensor-heating-ota-password
|
|
|
|
wifi:
|
|
ssid: !secret wifi_ssid
|
|
password: !secret wifi_password
|
|
|
|
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
|
ap:
|
|
ssid: "Sensor-Heating Fallback Hotspot"
|
|
password: !secret sensor-heating-fallback
|
|
|
|
captive_portal:
|
|
|
|
web_server:
|
|
port: 80
|
|
|
|
sensor:
|
|
# WiFi Signal
|
|
- platform: wifi_signal
|
|
name: "WiFi Signal"
|
|
update_interval: 60s
|
|
|
|
# Uptime
|
|
- platform: uptime
|
|
name: "Uptime"
|
|
update_interval: 60s |