arlo-go/cmd/main.go
2020-05-27 15:35:02 +04:00

37 lines
588 B
Go

package main
import (
"context"
"git.lehouerou.net/laurent/arlo-go"
log "github.com/sirupsen/logrus"
)
func main() {
a := arlo.NewArlo()
err := a.Login(context.Background(), "hass@lehouerou.net", "TiPXMVLUeZfUg6RrmwzK")
if err != nil {
log.Errorf("login: %v", err)
return
}
for _, device := range a.Cameras {
log.Infof("%s", device.DeviceName)
}
for _, b := range a.Basestations {
_, err := b.GetModes()
if err != nil {
log.Error(err)
}
log.Info("ok")
err = b.DeleteMode("mode5")
if err != nil {
log.Error(err)
}
log.Info("ok")
}
select {}
}