ESPHome-Devices/devices/basement-bathroom-shower-light-heater.yaml
Chris Nussbaum 557dae7ffc
Add Emporia Vue energy monitor (#42)
* Add the emporia-vue2 device
* Move time component from individual devices to the base device package
* Remove ESPSense component since I don't have a Sense energy monitor
* Update README
* Adjust BLE scan settings on garage fridge to improve wifi reliability
2022-11-01 16:25:09 -05:00

77 lines
1.7 KiB
YAML

substitutions:
device_id: basement-bath-shower-light-heat
device_name: Basement Bathroom Shower Light and Heater
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-pwd
packages:
device_base: !include ../packages/device_base_esp8266.yaml
external_components:
- source:
type: local
path: ../components
components: [ binary_light_with_power, gpio_switch_with_power ]
binary_sensor:
- platform: gpio
id: light_button
pin:
number: 12
mode: INPUT_PULLUP
on_press:
then:
- light.toggle: the_light
- platform: gpio
id: heater_button
pin:
number: 3
mode: INPUT_PULLUP
on_press:
then:
- switch.toggle: heater
light:
- platform: binary_light_with_power
id: the_light
name: Basement Shower Light
output: light_output
power:
id: light_power
name: Basement Shower Light Power
light_wattage: 11.5
output:
- platform: gpio
id: light_output
pin: 13
status_led:
pin:
number: 0
inverted: true
switch:
- platform: gpio_switch_with_power
id: heater
name: Basement Bathroom Heater
icon: mdi:radiator
pin: 4
power:
id: heat_power
name: Basement Bathroom Heater Power
device_wattage: 500.0
sensor:
- platform: total_daily_energy
name: Basement Shower Light
power_id: light_power
method: left
- platform: total_daily_energy
name: Basement Bathroom Heater
power_id: heat_power
method: left