aboutsummaryrefslogtreecommitdiff
path: root/group.go
AgeCommit message (Collapse)Author
2017-03-17Merge pull request #11 from EvanPurkhiser/fix-action-typesCollin Guarino
Correct some Action fields to be pointers
2017-03-16Correct some Action fields to be pointersEvan Purkhiser
Since we specify omitempty on all Action fields it's important that fields whose empty values are valid values to marshal, we must use pointer types, so that the empty value is nil, not the empty value of the type For example, prior to this change you could not specify On: false and have it correctly be marshaled into a Action JSON.
2017-03-07cleaned godoc format, returned else blocksrealytcracker
2016-09-15add SetGroupState()Christian Brunner
2016-02-28Ran go fmt on all files.Collin Guarino
2016-02-19Removed all log output except for errors.Collin Guarino
2016-02-16Changed documentation header standard project wide to a less passive voice.Collin Guarino
2016-02-14Documentation links for philips hue website to official docs added to all ↵Collin Guarino
file headers.
2016-02-14Scene struct and Bridge.GetScenes func implementation.Collin Guarino
2016-02-14Started scene files.Collin Guarino
2016-02-14Added base functions and struct for groups.Collin Guarino