-
-
Notifications
You must be signed in to change notification settings - Fork 598
Unable to discover Xiaomi Philips LED Bulb #106
Description
I'm unable to connect to my Xiaomi Philips LED bulb using home-assistant 0.56.2 with python-miio 0.3.0. I'm running into the following error:
2017-10-29 17:16:11 INFO (MainThread) [homeassistant.components.light.xiaomi_miio] Initializing with host 192.168.4.14 (token ddd6b...) 2017-10-29 17:16:16 ERROR (MainThread) [miio.device] Unable to discover a device at address 192.168.4.14
I've tried to use python-miio directly to connect to the device and I'm getting the following error:
from miio import *
a = Device('192.168.4.14', 'ddd...')
a.info()
Unable to discover a device at address 192.168.4.14
Traceback (most recent call last):
File "", line 1, in
File "/usr/local/lib/python3.5/dist-packages/miio/device.py", line 231, in info
return DeviceInfo(self.send("miIO.info", []))
File "/usr/local/lib/python3.5/dist-packages/miio/device.py", line 165, in send
self.do_discover()
File "/usr/local/lib/python3.5/dist-packages/miio/device.py", line 118, in do_discover
raise DeviceException("Unable to discover the device %s" % self.ip)
miio.device.DeviceException: Unable to discover the device 192.168.4.14
Please let me know if I can provide any further information. Thanks!