Set colour of a Hue light with relevant capabilities
hue_set_light_colour.Rd
N.B. Colour accuracy may not be perfect. See the official documentation for details, and consider using custom parameters with hue_set_light_state()
if this function does not achieve what you expect. https://developers.meethue.com/develop/application-design-guidance/color-conversion-formulas-rgb-to-xy-and-back/
Arguments
- id
If numeric, numeric id of light. If character, name of light. You can check id and names with
hue_get_lights_names()
- colour
A colour name as listed by
colours()
or a hexadecimal colour string.- transition_time
Duration of the transition in seconds. Defaults to 0.4 seconds.
Examples
if (interactive()) {
hue_set_light_colour(id = 11, colour = "blue")
}