mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 10:30:14 -04:00
75fb9c2ab8
finally fixing hvac-multisensor. All of this was caused by the display switch referenced the display while it wasn't plugged in. Updated code to check for the existence first.
27 lines
594 B
YAML
27 lines
594 B
YAML
captive_portal:
|
|
|
|
wifi:
|
|
ssid: !secret Wifi_SSID
|
|
password: !secret Wifi_PWD
|
|
|
|
#- ssid: !secret IoT_Wifi_SSID
|
|
# password: !secret IoT_Wifi_PWD
|
|
|
|
manual_ip:
|
|
static_ip: ${static_ip}
|
|
gateway: !secret iot_default_gateway
|
|
subnet: !secret iot_subnet_mask
|
|
|
|
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
|
ap:
|
|
ssid: "${friendly_name}"
|
|
password: !secret fallback_ap_password
|
|
|
|
# Enable fast connect
|
|
fast_connect: true
|
|
|
|
sensor:
|
|
- <<: !include sensor/rssi_sensor.config.yaml
|
|
|
|
text_sensor:
|
|
- <<: !include text_sensor/wifi_sensor.config.yaml |