2020-09-22 20:49:55 +00:00
|
|
|
substitutions:
|
|
|
|
device_id: master_bath_fan
|
|
|
|
device_name: Master Bathroom Fan
|
|
|
|
platform: ESP8266
|
|
|
|
board: esp01_1m
|
|
|
|
ip_address: !secret master_bath_fan_ip
|
|
|
|
ota_pwd: !secret master_bath_fan_ota_pwd
|
|
|
|
api_pwd: !secret master_bath_fan_api_pwd
|
|
|
|
ap_wifi_pwd: !secret master_bath_fan_ap_wifi_pwd
|
|
|
|
|
2020-10-07 22:21:38 +00:00
|
|
|
packages:
|
|
|
|
device_base: !include ../packages/device_base.yaml
|
2020-09-22 20:49:55 +00:00
|
|
|
|
|
|
|
binary_sensor:
|
|
|
|
- platform: gpio
|
|
|
|
id: fan_button
|
|
|
|
pin:
|
|
|
|
number: 13
|
|
|
|
mode: INPUT_PULLUP
|
|
|
|
on_press:
|
|
|
|
then:
|
|
|
|
- fan.toggle: the_fan
|
|
|
|
|
|
|
|
fan:
|
|
|
|
- platform: binary
|
|
|
|
id: the_fan
|
|
|
|
output: fan_output
|
|
|
|
name: ${device_name}
|
|
|
|
|
|
|
|
output:
|
|
|
|
- platform: gpio
|
|
|
|
id: fan_output
|
|
|
|
pin: 12
|
|
|
|
- platform: gpio
|
|
|
|
id: button_led
|
|
|
|
pin: 4
|
|
|
|
|
|
|
|
status_led:
|
|
|
|
pin:
|
|
|
|
number: 5
|
|
|
|
inverted: true
|