Add poweron and poweroff commands
This commit is contained in:
parent
6e1863f374
commit
e8abc45377
40
cmd/poweroff.go
Normal file
40
cmd/poweroff.go
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
package lumecmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
|
||||||
|
lifx "git.kill0.net/chill9/lume"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var cmdName string = "poweroff"
|
||||||
|
|
||||||
|
fs := flag.NewFlagSet(cmdName, flag.ExitOnError)
|
||||||
|
|
||||||
|
duration := fs.Float64("duration", defaultDuration, "Set the duration")
|
||||||
|
fs.Float64Var(duration, "d", defaultDuration, "Set the duration")
|
||||||
|
|
||||||
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
||||||
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
||||||
|
|
||||||
|
RegisterCommand(cmdName, Command{
|
||||||
|
Func: PoweroffCmd,
|
||||||
|
Flags: fs,
|
||||||
|
Use: "[--selector <selector>] [--duration <sec>]",
|
||||||
|
Short: "Power on",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
||||||
|
return 1, err
|
||||||
|
}
|
||||||
|
PrintResults(r.Results)
|
||||||
|
return 0, nil
|
||||||
|
}
|
40
cmd/poweron.go
Normal file
40
cmd/poweron.go
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
package lumecmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
|
||||||
|
lifx "git.kill0.net/chill9/lume"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var cmdName string = "poweron"
|
||||||
|
|
||||||
|
fs := flag.NewFlagSet(cmdName, flag.ExitOnError)
|
||||||
|
|
||||||
|
duration := fs.Float64("duration", defaultDuration, "Set the duration")
|
||||||
|
fs.Float64Var(duration, "d", defaultDuration, "Set the duration")
|
||||||
|
|
||||||
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
||||||
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
||||||
|
|
||||||
|
RegisterCommand(cmdName, Command{
|
||||||
|
Func: PoweronCmd,
|
||||||
|
Flags: fs,
|
||||||
|
Use: "[--selector <selector>] [--duration <sec>]",
|
||||||
|
Short: "Power on",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
||||||
|
return 1, err
|
||||||
|
}
|
||||||
|
PrintResults(r.Results)
|
||||||
|
return 0, nil
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user