devices.esphome.io

Teckin SS33

Teckin SS33

Device Type: plug
Electrical Standard: us
Board: esp8266

GPIO Pinout

PinFunction
GPIO04Status LED
GPIO13Push Button
GPIO12Relay 1
GPIO14Relay 2
GPIO03Relay 3

Basic Configuration

# Basic Config
---
esphome:
name: outdoor_ss33
ESP8266:
board: esp01_1m
# OTA flashing
ota:
- platform: esphome
wifi: # Your Wifi network details
# Enable fallback hotspot in case wifi connection fails
ap:
# Enabling the logging component
logger:
# Enable Home Assistant API
api:
# Enable the captive portal
captive_portal:
sensor:
- platform: uptime
name: "Outdoor SS33 uptime"
switch:
- platform: gpio
name: "Outdoor SS33 relay 1"
pin: GPIO12
id: relay1
- platform: gpio
name: "Outdoor SS33 relay 2"
pin: GPIO14
id: relay2
- platform: gpio
name: "Outdoor SS33 relay 3"
pin: GPIO03
id: relay3
binary_sensor:
- platform: gpio
pin:
number: GPIO13
mode: INPUT_PULLUP
inverted: False
name: "Outdoor SS33 button"
on_press:
- switch.turn_off: relay1
- switch.turn_off: relay2
- switch.turn_off: relay3
status_led:
pin:
number: GPIO04
Edit this page on GitHub