System setup:
ESPHome v1.15.2
HassOS 4.13
VirtualBox 6.1 (ubuntu 64 bit)
Hi All,
despite my best efforts I’m unable to get nodes created from ESPhome to show up as entities in home assist.
From Configurations it shows in both integrations and devices however will not show in the home assistant main page or as an entity.
I have tried deleting the device from ESPHome, re-flashing, uninstalling and reinstalling ESPHome, multiple reboots for HASSIO. Restarted the virtual machine. So far nothing I have tried will get it to show up in home assist.
I’ve set the node with a static IP and the default gateway pointing to my home router.
Any suggestions?
Here’s the YAML code:
esphome:
name: dining_room_curtain_r
platform: ESP32
board: firebeetle32
wifi:
ssid: "blank for this post"
password: "blank for this post"
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Dining Room Curtain R"
password: "blank for this post"
# Optional manual IP
manual_ip:
static_ip: 192.168.1.172
gateway: 192.168.1.1
subnet: 255.255.255.0
captive_portal:
# Enable logging
logger:
# Enable Home Assistant API
ota:
api:
services:
- service: shaft_target
variables:
target: int
then:
- stepper.set_target:
id: dining_curtain_r
target: !lambda "return target;"
stepper:
- platform: a4988
id: dining_curtain_r
dir_pin:
number: 26
inverted: True
step_pin: 27
max_speed: 1000 steps/s
# Optional:
sleep_pin:
number: 25
inverted: True
acceleration: 800
deceleration: 800