44 lines
666 B
YAML
44 lines
666 B
YAML
esphome:
|
|
name: epaper75
|
|
|
|
esp32:
|
|
board: esp32dev
|
|
framework:
|
|
type: arduino
|
|
|
|
# Enable logging
|
|
logger:
|
|
|
|
# Enable Home Assistant API
|
|
api:
|
|
encryption:
|
|
key: "tY/skPnkQn1sZRBYYJ4LL571z+aA1P463WvaX58ju2w="
|
|
|
|
ota:
|
|
platform: esphome
|
|
|
|
|
|
wifi:
|
|
ssid: !secret wifi_ssid
|
|
password: !secret wifi_password
|
|
|
|
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
|
ap:
|
|
ssid: "Epaper75 Fallback Hotspot"
|
|
password: "FALLBACKPW"
|
|
|
|
captive_portal:
|
|
|
|
|
|
i2c:
|
|
sda: 21
|
|
scl: 22
|
|
scan: True
|
|
|
|
sensor:
|
|
- platform: aht10
|
|
temperature:
|
|
name: "Outside Temperature"
|
|
humidity:
|
|
name: "Outside Pressure"
|
|
update_interval: 60s |