2020-02-04 04:03:45 +00:00
|
|
|
substitutions:
|
|
|
|
device_id: basement_bathroom_light_fan
|
|
|
|
device_name: Basement Bathroom Light and Fan
|
|
|
|
platform: ESP8266
|
|
|
|
board: esp01_1m
|
|
|
|
ip_address: !secret basement_bathroom_light_fan_ip
|
|
|
|
ota_pwd: !secret basement_bathroom_light_fan_ota_pwd
|
|
|
|
api_pwd: !secret basement_bathroom_light_fan_api_pwd
|
|
|
|
ap_wifi_pwd: !secret basement_bathroom_light_fan_ap_wifi_pwd
|
|
|
|
|
|
|
|
esphome:
|
|
|
|
<<: !include common/esphome.yaml
|
|
|
|
|
|
|
|
<<: !include common/common.yaml
|
2020-02-14 02:59:08 +00:00
|
|
|
<<: !include common/logger/logger_none.yaml
|
2020-02-04 04:03:45 +00:00
|
|
|
|
|
|
|
binary_sensor:
|
|
|
|
- !include common/binary_sensor/status.yaml
|
|
|
|
- platform: gpio
|
2020-02-06 04:04:00 +00:00
|
|
|
id: light_button
|
2020-02-04 04:03:45 +00:00
|
|
|
pin:
|
|
|
|
number: 12
|
|
|
|
mode: INPUT_PULLUP
|
|
|
|
on_press:
|
|
|
|
then:
|
2020-06-02 11:10:05 +00:00
|
|
|
- light.toggle: the_light
|
2020-02-04 04:03:45 +00:00
|
|
|
- platform: gpio
|
2020-02-06 04:04:00 +00:00
|
|
|
id: fan_button
|
2020-02-04 04:03:45 +00:00
|
|
|
pin:
|
|
|
|
number: 3
|
|
|
|
mode: INPUT_PULLUP
|
|
|
|
on_press:
|
|
|
|
then:
|
2020-02-06 04:04:00 +00:00
|
|
|
- fan.toggle: the_fan
|
2020-02-04 04:03:45 +00:00
|
|
|
|
|
|
|
fan:
|
|
|
|
- platform: binary
|
2020-02-06 04:04:00 +00:00
|
|
|
id: the_fan
|
2020-02-04 04:03:45 +00:00
|
|
|
output: fan_output
|
|
|
|
name: "Basement Bathroom Fan"
|
|
|
|
|
2020-06-02 11:10:05 +00:00
|
|
|
light:
|
|
|
|
- platform: binary
|
|
|
|
id: the_light
|
|
|
|
name: "Basement Bathroom Light"
|
|
|
|
output: light_output
|
|
|
|
|
2020-02-04 04:03:45 +00:00
|
|
|
output:
|
|
|
|
- platform: gpio
|
|
|
|
id: fan_output
|
|
|
|
pin: 4
|
2020-06-02 11:10:05 +00:00
|
|
|
- platform: gpio
|
|
|
|
id: light_output
|
|
|
|
pin: 13
|
2020-02-04 04:03:45 +00:00
|
|
|
|
|
|
|
sensor:
|
|
|
|
- !include common/sensor/uptime.yaml
|
|
|
|
- !include common/sensor/wifi.yaml
|
|
|
|
|
|
|
|
status_led:
|
2020-02-06 04:04:00 +00:00
|
|
|
pin:
|
|
|
|
number: 0
|
|
|
|
inverted: true
|
2020-02-04 04:03:45 +00:00
|
|
|
|
|
|
|
switch:
|
|
|
|
- !include common/switch/restart.yaml
|
|
|
|
|
|
|
|
text_sensor:
|
|
|
|
- !include common/text_sensor/version.yaml
|
|
|
|
- !include common/text_sensor/wifi.yaml
|