I have ESPHome devices that work fine with my HASS instance
I am trying to get some NOUS A1T https://nous.technology/product/a1t/de.html to work.
The NOUS are shown as “online” in the ESPHome Dashboard.
A screenshot of the WebUI of the NOUS looks like this:
This is my (stripped down for debugging) ESPHome yaml file
esphome:
name: esph-sous-minimal
esp8266:
board: esp8285
restore_from_flash: true
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
domain: .internal
ap:
ssid: "esph-sous-minimal-Hotspot"
logger: {level: DEBUG}
web_server: {port: 80}
api:
ota:
captive_portal:
################
interval:
- interval: 10s
then:
- if:
condition:
api.connected:
then:
- logger.log:
format: "API is connected!"
level: DEBUG
else:
- logger.log:
format: "API is not connected!"
level: WARN
################
binary_sensor:
- platform: gpio
id: "button_state"
name: "Taster"
pin:
number: GPIO00
mode: INPUT_PULLUP
inverted: true
Whatever I tried the device is and stays totally unrecognized by HASS. As I wrote, other devices (ESP8266 and ESP32) are immediately recognized and registered in HASS.
I am running HASS OS inside virtualbox.
All devices and HASS are connected to the same subnet (192.168.1.XXX).
I tried restarting the OS, reinstalling the ESPHome Addon many times. Nothing changes.
Do I have a blind spot here?