mirror of
https://github.com/brianhanifin/esphome-config.git
synced 2026-07-27 19:55:41 +00:00
69 lines
1.4 KiB
YAML
Executable File
69 lines
1.4 KiB
YAML
Executable File
# Sonoff Basic Power Module
|
|
#
|
|
substitutions:
|
|
devicename: sonoff_basic_02
|
|
upper_devicename: Sonoff Basic 02
|
|
|
|
esphome:
|
|
name: ${devicename}
|
|
platform: ESP8266
|
|
board: esp01_1m
|
|
board_flash_mode: dout
|
|
|
|
wifi:
|
|
ssid: !secret wifi_ssid
|
|
password: !secret wifi_pass
|
|
|
|
# Fallback Hotspot (requires "captive_portal:").
|
|
# ap:
|
|
# ssid: ${devicename}
|
|
# password: "12345678"
|
|
|
|
# captive_portal:
|
|
|
|
# Enable Home Assistant API
|
|
api:
|
|
|
|
ota:
|
|
safe_mode: True
|
|
|
|
logger:
|
|
|
|
binary_sensor:
|
|
## DISABLED due to the button being broken.
|
|
# - platform: gpio
|
|
# pin:
|
|
# number: GPIO0
|
|
# mode: INPUT_PULLUP
|
|
# inverted: True
|
|
# name: ${upper_devicename} Button
|
|
# id: ${devicename}_button
|
|
# on_press:
|
|
# - switch.toggle: relay
|
|
|
|
# - platform: status
|
|
# name: ${upper_devicename} Status
|
|
# id: ${devicename}_status
|
|
|
|
output:
|
|
# Register the green LED as a dimmable output ....
|
|
- platform: esp8266_pwm
|
|
id: green_led
|
|
pin:
|
|
number: GPIO13
|
|
inverted: True
|
|
|
|
light:
|
|
# ... and then make a light out of it.
|
|
- platform: monochromatic
|
|
name: ${upper_devicename} Green LED
|
|
id: ${devicename}_green_led
|
|
output: green_led
|
|
internal: true # hide from Home Assistant
|
|
|
|
switch:
|
|
- platform: gpio
|
|
name: ${upper_devicename}
|
|
id: relay
|
|
pin: GPIO12
|
|
restore_mode: ALWAYS_ON |