51 lines
764 B
YAML
51 lines
764 B
YAML
|
esphome:
|
||
|
name: livingroom
|
||
|
|
||
|
esp32:
|
||
|
board: featheresp32
|
||
|
framework:
|
||
|
type: arduino
|
||
|
|
||
|
# Enable logging
|
||
|
logger:
|
||
|
|
||
|
# Enable Home Assistant API
|
||
|
api:
|
||
|
password: ""
|
||
|
|
||
|
ota:
|
||
|
password: ""
|
||
|
|
||
|
wifi:
|
||
|
ssid: "NETZ39"
|
||
|
password: !secret wifi_pw
|
||
|
|
||
|
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
||
|
ap:
|
||
|
ssid: "Livingroom Fallback Hotspot"
|
||
|
password: "KagHyImVVStB"
|
||
|
|
||
|
captive_portal:
|
||
|
|
||
|
i2c:
|
||
|
sda: 21
|
||
|
scl: 22
|
||
|
scan: true
|
||
|
|
||
|
sensor:
|
||
|
- platform: bme680
|
||
|
temperature:
|
||
|
name: "BME680 Temperature"
|
||
|
oversampling: 16x
|
||
|
pressure:
|
||
|
name: "BME680 Pressure"
|
||
|
humidity:
|
||
|
name: "BME680 Humidity"
|
||
|
gas_resistance:
|
||
|
name: "BME680 Gas Resistance"
|
||
|
address: 0x77
|
||
|
update_interval: 60s
|
||
|
|
||
|
mqtt:
|
||
|
broker: mqtt.n39.eu
|