Hey all,
At one point this worked, not sure what changed. I am trying to poll two different weather stations so I can compare various parameters. Now I’m getting errors about duplicate entities:
2018-02-28 10:09:16 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/lib/python3.5/asyncio/tasks.py", line 239, in _step
result = coro.send(None)
File "/usr/local/lib/python3.5/dist-packages/homeassistant/helpers/entity_platform.py", line 260, in _async_add_entity
msg)
homeassistant.exceptions.HomeAssistantError: Entity id already exists: sensor.pws_temp_f
2018-02-28 10:09:16 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/lib/python3.5/asyncio/tasks.py", line 239, in _step
result = coro.send(None)
File "/usr/local/lib/python3.5/dist-packages/homeassistant/helpers/entity_platform.py", line 260, in _async_add_entity
msg)
homeassistant.exceptions.HomeAssistantError: Entity id already exists: sensor.pws_precip_today_in
2018-02-28 10:09:16 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/lib/python3.5/asyncio/tasks.py", line 239, in _step
result = coro.send(None)
File "/usr/local/lib/python3.5/dist-packages/homeassistant/helpers/entity_platform.py", line 260, in _async_add_entity
msg)
homeassistant.exceptions.HomeAssistantError: Entity id already exists: sensor.pws_station_id
The config is pretty simple:
- platform: wunderground
api_key: !secret wunderground_api_key
pws_id: KOHSUNBU11
monitored_conditions:
- weather
- temp_f
- station_id
- feelslike_f
- heat_index_f
- dewpoint_f
- wind_mph
- UV
- pressure_in
- wind_dir
- relative_humidity
- precip_today_in
- alerts
- platform: wunderground
api_key: !secret wunderground_api_key
pws_id: KOHJOHNS13
monitored_conditions:
- weather
- temp_f
- station_id
- feelslike_f
- heat_index_f
- dewpoint_f
- wind_mph
- UV
- pressure_in
- wind_dir
- relative_humidity
- precip_today_in
- alerts
Any way to get this working again? Thanks so much!!