Trying to integrate Circuitsetup energy meter
CircuitSetup / Split-Single-Phase-Energy-Meter
into HA running on Pi-4 under Docker in ESPHome addon to HA.
HA in supervisor mode attempting to integrate ESP energy meter via ESPHome under HA from web interface. I use suggested yaml file but end with “ERROR Connecting to 10.0.1.192:3232 failed: [Errno 113] No route to host”
Anyone out there using the ESP32 CircuitSetup unit that might help
Tnx
Is this the suggested yaml file you wrote about?
10.0.1.192
is supposed to be the IP address of your ESP32, right? Make sure it is on the right subnet – see ip addr
on the RPi. Actually, check all those !secret
manual_ip
settings. Also try ping 10.0.1.192
.
Please show us the whole error message you get in your log.
Yes that is the yaml I am trying to use.
OTA install
At end of “install” get “INFO Successfully compiled program.
INFO Connecting to 10.0.1.192
ERROR Connecting to 10.0.1.192:3232 failed: [Errno 113] No route to host”
It appears that the ESP32 is not getting the word to switch over to the new IP address?
Has this esp32 been deployed yet? The first sketch upload can not be done OTA.
ESP appears to have CircuitSetup EmonCMS installed
It appears on network emonesp9972
and it comes up in a given IP address
can’t get it to use another IP with that interface
I suppose I have to blow that away and load ESPHome code?
Add
use_address: 10.0.current.ip
in the wifi settings
wifi:
ssid: MyHomeNetwork
password: VerySafePassword
use_address: 10.0.current.ip
See info in
Tnx