Skip to content

tim-hellhake/esphome-adapter

Repository files navigation

ESPHome Adapter

build dependencies devDependencies optionalDependencies license

Connect your ESPHome devices.

Configuration (if you enabled authentication)

  1. Go to the addon config
  2. If you enabled authentication, enter the same user/password as in the ESPHome config
  3. If you enabled the ESPHome api, enter the port of the web_server as fallbackPort in the config

Prerequisites

  1. The web server needs to be enabled (web_server)

Limitations

  • Currently only switches are supported.

Example firmware for the Sonoff S20

esphome:
  name: <name of your choice>
  platform: ESP8266
  board: esp01_1m

wifi:
  ssid: <YOUR_SSID>
  password: <YOUR_PASSWORD>

logger:

ota:

web_server:
  port: 80
  auth:
    username: <USERNAME>
    password: <PASSWORD>

switch:
  - platform: gpio
    name: "Sonoff S20 Relay"
    pin: GPIO12