From 541bfc66cb1dd94c9ab4d7089adc0f31a77799d4 Mon Sep 17 00:00:00 2001 From: Collin Guarino Date: Fri, 23 Sep 2016 17:58:43 -0400 Subject: Fixed issue #1 invalid types for hue and saturation in LightState struct. --- light.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'light.go') diff --git a/light.go b/light.go index 0dd38db..fc1229e 100644 --- a/light.go +++ b/light.go @@ -20,8 +20,8 @@ type Light struct { State struct { On bool `json:"on"` // On or Off state of the light ("true" or "false") Bri uint8 `json:"bri"` // Brightness value 1-254 - Hue int `json:"hue"` // Hue value 1-65535 - Saturation int `json:"sat"` // Saturation value 0-254 + Hue uint16 `json:"hue"` // Hue value 1-65535 + Saturation uint8 `json:"sat"` // Saturation value 0-254 Effect string `json:"effect"` // "None" or "Colorloop" XY [2]float32 `json:"xy"` // Coordinates of color in CIE color space CT int `json:"ct"` // Mired Color Temperature (google it) -- cgit v1.2.3