Controls Philips Hue lights and scenes via the OpenHue CLI.
This skill provides a command-line interface for controlling your Philips Hue smart lights. It allows you to manage individual lights, rooms, and scenes directly from your terminal.
The openhue skill offers a variety of commands for managing your Philips Hue lighting system.
You can control a single light by its name.
# Turn a light on
openhue set light "Living Room Lamp" --on
# Set the brightness
openhue set light "Living Room Lamp" --on --brightness 75
# Set the color
openhue set light "Living Room Lamp" --on --color blue
You can also control all the lights in a room at once.
# Turn off all lights in a room
openhue set room "Bedroom" --off
# Set the brightness for a room
openhue set room "Bedroom" --on --brightness 50
To activate a scene, you need to specify both the scene name and the room.
openhue set scene "Movie Time" --room "Living Room"