lume/cmd/poweroff.go

20 lines
405 B
Go
Raw Normal View History

2021-01-14 06:04:05 +00:00
package lumecmd
import (
"git.kill0.net/chill9/lifx-go"
2021-01-14 06:04:05 +00:00
)
func PoweroffCmd(args CmdArgs) (int, error) {
c := args.Client
duration := args.Flags.Float64("duration")
selector := args.Flags.String("selector")
state := lifx.State{Power: "off", Duration: duration}
r, err := c.SetState(selector, state)
if err != nil {
2021-01-31 17:08:24 +00:00
return ExitFailure, err
2021-01-14 06:04:05 +00:00
}
PrintResults(r.Results)
return ExitSuccess, nil
2021-01-14 06:04:05 +00:00
}