esphome-docs/devices/sonoff_t1_uk_3gang_v1.1.yaml

79 lines
1.5 KiB
YAML

esphome:
name: <NAME_OF_NODE>
platform: ESP8266
board: esp01_1m
# Automation turning on the blue status LED once T1 is booted up
on_boot:
priority: -10
then:
- light.turn_on: blue_led_light
wifi:
ssid: <YOUR_SSID>
password: <YOUR_PASSWORD>
# Enable logging
logger:
# Enable Home Assistant API
api:
ota:
binary_sensor:
- platform: gpio
pin:
number: GPIO0
mode: INPUT_PULLUP
inverted: True
name: "Sonoff T1 UK 3 Gang Touchpad 1"
on_press:
- switch.toggle: relay_1
- platform: gpio
pin:
number: GPIO9
mode: INPUT_PULLUP
inverted: True
name: "Sonoff T1 UK 3 Gang Touchpad 2"
on_press:
- switch.toggle: relay_2
- platform: gpio
pin:
number: GPIO10
mode: INPUT_PULLUP
inverted: True
name: "Sonoff T1 UK 3 Gang Touchpad 3"
on_press:
- switch.toggle: relay_3
- platform: status
name: "Sonoff T1 UK 3 Gang Status"
switch:
- platform: gpio
name: "Sonoff T1 UK 3 Gang Relay 1"
pin: GPIO12
id: relay_1
- platform: gpio
name: "Sonoff T1 UK 3 Gang Relay 2"
pin: GPIO5
id: relay_2
- platform: gpio
name: "Sonoff T1 UK 3 Gang Relay 3"
pin: GPIO4
id: relay_3
output:
# Register the blue LED as a dimmable output ....
- platform: esp8266_pwm
id: blue_led
pin: GPIO13
inverted: True
light:
# ... and then make a light out of it.
- platform: monochromatic
name: "Sonoff T1 UK 3 Gang Blue LED"
output: blue_led
internal: true
id: blue_led_light