If you don’t have HA yet, you still can edit config of your boneIO ESP.
Editing Esphome without HA, just on your PC is also possible. Similar instruction is here: https://esphome.io/guides/getting_started_command_line
In your PC you’d need following software installed:
Run following command in terminal:
docker pull ghcr.io/esphome/esphome
Now let’s start Esphome dashboard.
Make directory where your config would be stored eg /home/me/esphome
or in Windows C:\Users\me\esphome
Now start docker. Windows CMD
docker run --rm --privileged --network host -v "C:\Users\me\esphome":/config -it ghcr.io/esphome/esphome dashboard .
In Linux based system:
docker run --rm --privileged --network host -v "/home/me/esphome":/config -it ghcr.io/esphome/esphome dashboard .
Now in Chrome open website: http://0.0.0.0:6052/
Note: For this to work your home network must support mDNS. Your PC and boneIO is in same subnet (same VLAN) in most cases it’d work. boneIO has to be connected to your network and working.
Find your new boneIO device in the dashboard.
Click Adopt
Choose name for our new device
Click Adopt
Now it will prompt for install new software
After install there will be logs visible, you can click stop now
It’s ready, you can edit your config by clicking Edit on your boneIO device.
In config find line:
api:
and add reboot_timeout: 0s
to it, so it’d look like:
api:
reboot_timeout: 0s