mirror of
https://github.com/nuttytree/ESPHome-Devices.git
synced 2024-08-30 18:12:19 +00:00
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
substitutions:
|
|
device_id: basement_bath_shower_light_heat
|
|
device_name: Basement Bathroom Shower Light and Heater
|
|
platform: ESP8266
|
|
board: esp01_1m
|
|
ip_address: !secret basement_bathroom_shower_light_heater_ip
|
|
ota_pwd: !secret basement_bathroom_shower_light_heater_ota_pwd
|
|
api_pwd: !secret basement_bathroom_shower_light_heater_api_pwd
|
|
ap_wifi_pwd: !secret basement_bathroom_shower_light_heater_ap_wifi_pwd
|
|
|
|
esphome:
|
|
<<: !include common/esphome.yaml
|
|
|
|
<<: !include common/common.yaml
|
|
<<: !include common/logger/logger_none.yaml
|
|
|
|
binary_sensor:
|
|
- !include common/binary_sensor/status.yaml
|
|
- platform: gpio
|
|
id: light_button
|
|
pin:
|
|
number: 12
|
|
mode: INPUT_PULLUP
|
|
on_press:
|
|
then:
|
|
- switch.toggle: light
|
|
- platform: gpio
|
|
id: heater_button
|
|
pin:
|
|
number: 3
|
|
mode: INPUT_PULLUP
|
|
on_press:
|
|
then:
|
|
- switch.toggle: heater
|
|
|
|
sensor:
|
|
- !include common/sensor/uptime.yaml
|
|
- !include common/sensor/wifi.yaml
|
|
|
|
status_led:
|
|
pin:
|
|
number: 0
|
|
inverted: true
|
|
|
|
switch:
|
|
- !include common/switch/restart.yaml
|
|
- platform: gpio
|
|
id: light
|
|
name: "Basement Shower Light"
|
|
icon: mdi:lightbulb
|
|
pin: 13
|
|
- platform: gpio
|
|
id: heater
|
|
name: "Basement Bathroom Heater"
|
|
icon: mdi:radiator
|
|
pin: 4
|
|
|
|
text_sensor:
|
|
- !include common/text_sensor/version.yaml
|
|
- !include common/text_sensor/wifi.yaml |