mirror of
https://github.com/randybb/esphome-configs.git
synced 2026-01-02 11:37:28 +01:00
52 lines
914 B
YAML
52 lines
914 B
YAML
substitutions:
|
|
device: basement-2
|
|
name_short: Basement
|
|
name: Basement 2
|
|
area: Basement
|
|
comment: "${area} | Lights"
|
|
|
|
esphome:
|
|
name: mcu-${device}
|
|
friendly_name: ${name}
|
|
area: ${area}
|
|
comment: ${comment}
|
|
|
|
esp8266:
|
|
board: esp01_1m
|
|
|
|
packages:
|
|
common: !include common/common_esp8266.yaml
|
|
|
|
# Sonoff Dual R2
|
|
# GPIO10 Push Button
|
|
# GPIO00 Pin "button 0" on expansion header
|
|
# GPIO09 Pin "button 1" on expansion header
|
|
# GPIO12 Relay #1 and red color on LED
|
|
# GPIO05 Relay #2 and green color on LED
|
|
# GPIO13 Blue Status LED
|
|
|
|
status_led:
|
|
pin:
|
|
number: 13
|
|
inverted: yes
|
|
|
|
light:
|
|
- platform: binary
|
|
name: Light
|
|
id: light_1
|
|
output: relay_1
|
|
restore_mode: ALWAYS_ON
|
|
- platform: binary
|
|
name: Workbench Light
|
|
id: light_2
|
|
output: relay_2
|
|
restore_mode: ALWAYS_ON
|
|
|
|
output:
|
|
- platform: gpio
|
|
pin: 12
|
|
id: relay_1
|
|
- platform: gpio
|
|
pin: 5
|
|
id: relay_2
|