Last active
December 7, 2021 02:15
-
-
Save vikingosegundo/96d2060087329bc52b1ad911f731ccf6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func newLight() -> Light { | |
Light(id:"01", name:"01").alter( | |
by: | |
.setting(.brightness (to:0.5 )), | |
.setting(.hue (to:0.5 )), | |
.setting(.saturation (to:0.5 )), | |
.setting(.temperature(to:200.mk)), | |
.turning(.it(.on)) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment