2021-01-14 06:04:05 +00:00
|
|
|
package lumecmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
lifx "git.kill0.net/chill9/lume"
|
|
|
|
)
|
|
|
|
|
|
|
|
func PoweronCmd(args CmdArgs) (int, error) {
|
|
|
|
c := args.Client
|
|
|
|
duration := args.Flags.Float64("duration")
|
|
|
|
selector := args.Flags.String("selector")
|
|
|
|
state := lifx.State{Power: "on", 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)
|
2021-01-18 03:08:13 +00:00
|
|
|
return ExitSuccess, nil
|
2021-01-14 06:04:05 +00:00
|
|
|
}
|