Hello,
Having hard time adding device to existing list of WLED devices (already have 3 up and running).
My HA GUI doesnt return any errors
But in log it is recorded:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/aiohttp/web_protocol.py", line 452, in _handle_request
resp = await request_handler(request)
File "/usr/local/lib/python3.11/site-packages/aiohttp/web_app.py", line 543, in _handle
resp = await handler(request)
File "/usr/local/lib/python3.11/site-packages/aiohttp/web_middlewares.py", line 114, in impl
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/security_filter.py", line 85, in security_filter_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/forwarded.py", line 100, in forwarded_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/request_context.py", line 28, in request_context_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/ban.py", line 80, in ban_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/auth.py", line 233, in auth_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/headers.py", line 31, in headers_middleware
response = await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/view.py", line 149, in handle
result = await handler(request, **request.match_info)
File "/usr/src/homeassistant/homeassistant/components/http/decorators.py", line 63, in with_admin
return await func(self, request, *args, **kwargs)
File "/usr/src/homeassistant/homeassistant/components/config/config_entries.py", line 177, in post
return await super().post(request, flow_id)
File "/usr/src/homeassistant/homeassistant/components/http/data_validator.py", line 72, in wrapper
result = await method(view, request, data, *args, **kwargs)
File "/usr/src/homeassistant/homeassistant/helpers/data_entry_flow.py", line 110, in post
result = await self._flow_mgr.async_configure(flow_id, data)
File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 323, in async_configure
result = await self._async_handle_step(
File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 419, in _async_handle_step
result: FlowResult = await getattr(flow, method)(user_input)
File "/usr/src/homeassistant/homeassistant/components/wled/config_flow.py", line 40, in async_step_user
device = await self._async_get_device(user_input[CONF_HOST])
File "/usr/src/homeassistant/homeassistant/components/wled/config_flow.py", line 117, in _async_get_device
return await wled.update()
File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry
ret = await target(*args, **kwargs)
File "/usr/local/lib/python3.11/site-packages/wled/wled.py", line 256, in update
if not (data := await self.request("/json")):
File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry
ret = await target(*args, **kwargs)
File "/usr/local/lib/python3.11/site-packages/wled/wled.py", line 188, in request
response = await self.session.request(
File "/usr/local/lib/python3.11/site-packages/aiohttp/client.py", line 541, in _request
req = self._request_class(
File "/usr/local/lib/python3.11/site-packages/aiohttp/client_reqrep.py", line 326, in __init__
self.update_headers(headers)
File "/usr/local/lib/python3.11/site-packages/aiohttp/client_reqrep.py", line 431, in update_headers
if self.url.port is not None and not self.url.is_default_port():
File "/usr/local/lib/python3.11/site-packages/yarl/_url.py", line 525, in port
return self._val.port or DEFAULT_PORTS.get(self._val.scheme)
File "/usr/local/lib/python3.11/urllib/parse.py", line 182, in port
raise ValueError(f"Port could not be cast to integer value as {port!r}")
ValueError: Port could not be cast to integer value as '//51.32.0.110/:80'
2024-01-05 01:10:20.711 ERROR (SyncWorker_3) [miio.miioprotocol] Got error when receiving: timed out
I am running HA
* Core 2024.1.0
* Supervisor 2023.12.0
* Operating System 11.2
* Frontend 20240103.3
and WLED 0.14.0 (build 2310130)
on Espressif ESP8266-DevKitC
Since I’m new user I can’t post a screenshot of my WLED Wi-Fi setup, but I can prob. share it accordingly.
Static IP address is reserved via Router by MAC address.
Can anyone help on this I would rly appreciate?