19 lines
303 B
Go

package domain
type TurnOnParams struct {
EntityID EntityID
BrightnessPct *uint32 // nil = not set
ColorTempKelvin *uint32
RGBColor *RGBColor
Transition *uint32
}
type RGBColor struct {
R, G, B uint8
}
type TurnOffParams struct {
EntityID EntityID
Transition *uint32
}