Note that all references that follow are for V1 of the Hue API.
A recent house move has required me to revise the code for a bedside Raspberry Pi with touchscreen which I use frequently to control some Hue lights.
At the time I wrote the code a couple of years ago, I did my best to make it as tidy as possible, particularly for the class I wrote for monitoring the lights’ state and switching. I’ve had to hack it in order to take account of some unanticipated new functionality: using it to control a group of bulbs, rather than an individual light.
In order to do this, I had to remind myself of some of the original logic, which includes contingency for an occupational hazard for the use of Hue bulbs at home: people switching them off at the wall. While the mobile app – at least at the time of writing – still doesn’t check for this and will merrily let you switch lights on and off with no effect, the API does facilitate it. So in order to query the current light state you can AND both of these from the JSON response from the …/lights/yourLightNumber endpoint:
isSwitchedOn = str(jsonData['state']['on']).strip()
isReachable = str(jsonData['state']['reachable']).strip()
Groups do not have an indication of reachability. What I’ve decided on as the lowest impact way of checking the state of the group is simply to check on one of the bulbs it contains – a safe enough assumption for me as all of them are on the same physical light switch in the room.
For bulb switching control, you just need to append the word ‘state’ to the end of the URL used for querying status. While the HTTP verb changes to a PUT (with payload) for the latter, my pre-groups code structure was based around this assumption on the URL structure. Now I search for the name of the bulb we are checking state on, and rewrite the URL for the reference to the group:
elif action == "switch":
if "/6" in interMedURLString:
interMedURLString = URL + APIKEY + "/groups/81/action"
One more change like this and I’ll have to start the code from scratch – but it works and is good enough for now. If you’ve stumbled here from Google and are looking for some code to get you started – with caveats on structure! – you can find it here.