mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
38 lines
721 B
YAML
38 lines
721 B
YAML
substitutions:
|
|
devicename: bathroom-multisensor
|
|
entity_name: bathroom_multisensor
|
|
friendly_name: Bathroom MultiSensor
|
|
comment: Clever MultiSensor
|
|
platform: ESP8266
|
|
board: nodemcu
|
|
i2c_id: bus_a
|
|
static_ip: !secret bathroom-multisensor-ip
|
|
|
|
packages:
|
|
network: !include common/wifi.yaml
|
|
device_base: !include common/device_base.yaml
|
|
bme680: !include common/bme680.yaml
|
|
too_humid: !include common/binary_sensor/too_humid.yaml
|
|
|
|
esphome:
|
|
name: ${devicename}
|
|
friendly_name: ${friendly_name}
|
|
name_add_mac_suffix: false
|
|
|
|
esp8266:
|
|
board: ${board}
|
|
|
|
# Enable logging
|
|
logger:
|
|
#level: VERBOSE
|
|
|
|
web_server:
|
|
port: 80
|
|
version: 3
|
|
include_internal: True
|
|
|
|
i2c:
|
|
- id: ${i2c_id}
|
|
sda: D2
|
|
scl: D1
|