allanbunch / beautifulhue

A Python library for the Philips Hue Lighting System API.
Other
92 stars 23 forks source link

Added support for scenes to api. #11

Closed martinschaef closed 9 years ago

martinschaef commented 9 years ago

Now you can use:

scenes = bridge.scene.get({'which':'all'}) for scene in scenes['resource']: print scene

to get all scenes and set scenes by posting them to a group. See here: http://stackoverflow.com/questions/18274632/how-to-create-scenes-with-the-philips-hue-api?rq=1

(and thanks for providing this API)

allanbunch commented 9 years ago

Thanks a bunch!