view sonoff_light_2.yaml @ 7:5a80f3f2be8d

more boards, cams
author drewp@bigasterisk.com
date Thu, 27 Jun 2024 16:55:03 -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