devices.esphome.io
Sonoff S26
Sonoff S26
Device Type: plugBoard: esp8266
GPIO Pinout
| Pin | Function |
|---|---|
| GPIO0 | Push Button (HIGH = off, LOW = on) |
| GPIO12 | Relay and Red LED |
| GPIO13 | Blue Status LED |
Basic Configuration
# Basic Configesphome: name: sonoffs26_1 esp8266: board: esp01_1m board_flash_mode: dout # OTA flashingota: - platform: esphome
wifi: # Your Wifi network details # Enable fallback hotspot in case wifi connection fails ap:
# Enabling the logging componentlogger:
# Enable Home Assistant APIapi:
# Enable the captive portalcaptive_portal:
# Enable the Web Server component webserver:
status_led: pin: number: GPIO13 inverted: false
binary_sensor: - platform: gpio pin: number: GPIO0 mode: INPUT_PULLUP inverted: True name: "Sonoff S26_1 Button" on_press: - switch.toggle: relay - platform: status name: "Sonoff S26_1 Status"
switch: - platform: gpio name: "Sonoff S26_1 Relay" pin: GPIO12 id: "relay" - platform: restart name: "sonoffs26_1 Restart"