For process of elimination, I’ve statically assigned addresses in my DHCP server as follows:
[code]host lifx_livingroom_1 {
hardware ethernet D0:73:D5:12:D6:4A;
fixed-address 192.168.0.29;
}
host lifx_livingroom_2 {
hardware ethernet D0:73:D5:13:2B:D9;
fixed-address 192.168.0.30;
}
host lifx_bedroom_1 {
hardware ethernet D0:73:D5:10:49:32;
fixed-address 192.168.0.31;
}
host lifx_bedroom_2 {
hardware ethernet D0:73:D5:10:43:73;
fixed-address 192.168.0.32;
}[/code]
Here’s the error message I am getting every time I restart HASS:
16-09-13 12:25:10 homeassistant.components.light: Error while setting up platform lifx Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/homeassistant/helpers/entity_component.py", line 107, in _setup_platform discovery_info) File "/usr/lib/python3.5/site-packages/homeassistant/components/light/lifx.py", line 113, in setup_platform lifx_library = LIFX(add_devices_callback, server_addr, broadcast_addr) File "/usr/lib/python3.5/site-packages/homeassistant/components/light/lifx.py", line 50, in __init__ broadcast_addr) File "/fileserver/users/homeassistant/.homeassistant/deps/liffylights.py", line 100, in __init__ self._sock.bind((listener_addr, UDP_PORT)) OSError: [Errno 98] Address already in use
What would trigger the exception?