devices.esphome.io
Teckin SS33
Teckin SS33
Device Type: plugElectrical Standard: usBoard: esp8266
GPIO Pinout
| Pin | Function |
|---|---|
| GPIO04 | Status LED |
| GPIO13 | Push Button |
| GPIO12 | Relay 1 |
| GPIO14 | Relay 2 |
| GPIO03 | Relay 3 |
Basic Configuration
# Basic Config---esphome: name: outdoor_ss33
ESP8266: board: esp01_1m # 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:
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