view sonoff_light_2.yaml @ 19:075b7e4854ba

wip rocks
author drewp@bigasterisk.com
date Sat, 03 Aug 2024 17:24:17 -0700
parents 477883ce71ec
children
line wrap: on
line source

esphome:
  name: sonoff_2
  platform: esp8266
  board: esp01_1m

logger:
  level: INFO

wifi:
  networks:
    - ssid: !secret wifi_ssid
      password: !secret wifi_password

ota:
  platform: esphome

mqtt:
  id: mqtt_client
  broker: "mqtt2.bigasterisk.com"

binary_sensor:
  - platform: gpio
    pin:
      number: GPIO0
      mode: INPUT_PULLUP
      inverted: True
    name: "Sonoff Basic Button"
    on_press:
      - switch.toggle: relay

switch:
  - platform: gpio
    name: "Sonoff Basic Relay"
    pin: GPIO12
    id: relay

status_led:
  pin:
    number: GPIO13
    inverted: yes