I am trying to configure a LocalByes ESP8266 Plug to use a fixed IP address and not DHCP, but can’t get the IP Address section to work.
If I remove the manual_ip section it installs fine, if I include it, it fails with
INFO Successfully compiled program.
INFO Connecting to 192.168.8.3
ERROR Connecting to 192.168.8.3:8266 failed: [Errno 113] No route to host
wifi:
fast_connect: True
ssid: !secret wifi_ssid
password: !secret wifi_password
manual_ip:
static_ip: 192.168.8.3
gateway: 192.168.8.1
subnet: 255.255.255.0
Any know what I am doing wrong ?
Thanks