ESP12S not showing in ESP Home plugin

ESP Noob question here. I’m just starting out with this ESP stuff. I created a small ESP Home configuration file and uploaded it to an ESP12S based development board over USB using the ESP home command line interface on my windows PC. It all seems to work out fine. The entities show up in Home Assistant and even an OTA works from the windows CLI. However I do not see the device in the ESP home plugin in Home Assistant.

Why would that be? Because it was created using the windows CLI? I cannot really create it from within Home Assistant since the USB ports on the RPI are not easily accessible, but I would like to maintain and upgrade it via OTA from within Home Assitant.

Configuration file:

esphome:
  name: esp_wtw
  platform: ESP8266
  board: nodemcuv2

wifi:
  ssid: *****
  password: ********

# Enable logging
logger:
    #level: DEBUG

# Enable Home Assistant API
api:

ota:

binary_sensor:
  - platform: gpio
    pin:
      number: GPIO13
      mode: INPUT_PULLUP
      inverted: True
    name: "black"

switch:
  - platform: gpio
    pin:
      number: GPIO12
    name: "One"

Put the yaml file into the HA machine. It goes in /config/esphome

1 Like

That looks like a step back.
I assumed that they would be added to the user interface so that they could be conveniently managed.

Thanks @nickrout, that made it work.

You assumed wrong.

Think about it, the yaml cannot be extracted from the flashed device, so the other instance of esphome could not possibly add it.

I understand. I still use USB and HA for flashing. It just seemed impractical to me.

Once you have flashed the first time OTA is available.