Closed s4v4g3 closed 11 years ago
I appreciate your work on the python hue interface.
I noticed that your off() method does not work (at least for my gateway).
This updated method fixes the problem:
def off(self): return self.set_state({"on": False})
Yes! I also did this change and works fine. I got it from here: http://blog.ef.net/2012/11/02/philips-hue-api.html (a nice list of all the request/methods)
Fixed in https://github.com/issackelly/python-hue/commit/f6dfd341e79e2b9aa9e5691f96fc78a254b87365 Thanks!
I appreciate your work on the python hue interface.
I noticed that your off() method does not work (at least for my gateway).
This updated method fixes the problem:
def off(self): return self.set_state({"on": False})