You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
64 lines
1.2 KiB
4 years ago
|
# Basic Config
|
||
|
esphome:
|
||
|
name: lounge_light_2
|
||
|
platform: ESP8266
|
||
|
board: esp8285
|
||
|
|
||
|
wifi:
|
||
|
ssid: !secret wifi-ssid
|
||
|
password: !secret wifi-password
|
||
|
|
||
|
logger:
|
||
|
api:
|
||
|
ota:
|
||
|
|
||
|
# Device Specific Config
|
||
|
|
||
|
light:
|
||
|
- platform: binary
|
||
|
id: lamp
|
||
|
name: "Desk Lamp 2"
|
||
|
output: gpio_12
|
||
|
output:
|
||
|
- platform: gpio
|
||
|
pin: GPIO12
|
||
|
id: gpio_12
|
||
|
|
||
|
binary_sensor:
|
||
|
- platform: gpio
|
||
|
id: push_button
|
||
|
pin:
|
||
|
number: GPIO0
|
||
|
mode: INPUT_PULLUP
|
||
|
inverted: True
|
||
|
internal: true
|
||
|
on_press:
|
||
|
# Prevents unintended LED lit states.
|
||
|
if:
|
||
|
condition:
|
||
|
- light.is_off: lamp
|
||
|
then:
|
||
|
#- light.turn_on: blue_led
|
||
|
- light.turn_on: lamp
|
||
|
else:
|
||
|
- light.turn_off: lamp
|
||
|
|
||
|
#switch:
|
||
|
# # The relay switches on the red side of the LED when active.
|
||
|
# - platform: gpio
|
||
|
# name: "Sonoff Basic Relay"
|
||
|
# pin: GPIO12
|
||
|
# id: relay
|
||
|
# on_turn_off:
|
||
|
# if:
|
||
|
# condition:
|
||
|
# - switch.is_on: blue_led
|
||
|
# then:
|
||
|
# - switch.turn_off: blue_led
|
||
|
# # With this we can control the blue side of the LED.
|
||
|
# - platform: gpio
|
||
|
# id: blue_led
|
||
|
# pin:
|
||
|
# number: GPIO13
|
||
|
# inverted: True
|