|
@@ -280,6 +280,20 @@ func isEight() bool {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-func (s *infoBoardService) CronSync() {
|
|
|
-
|
|
|
+// CronSyncBrightnessAndMusicvolume 同步亮度与音量
|
|
|
+func (s *infoBoardService) CronSyncBrightnessAndMusicvolume() {
|
|
|
+ board := dao.InfoBoard{}
|
|
|
+ list, err := board.GetAllDevicesNotTenant()
|
|
|
+ if err != nil {
|
|
|
+ fmt.Printf("err = %v \n", err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //fmt.Printf("list = %v \n", list)
|
|
|
+ for _, led := range list {
|
|
|
+ _, retState := cache.GetDeviceState(led.Sn)
|
|
|
+ //fmt.Printf("retState = %v \n", retState)
|
|
|
+ if retState == "1" {
|
|
|
+ s.EdgeCmd(strconv.Itoa(led.TenantId), led.Sn, 101, led.ID)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|