소스 검색

led信息屏

sixian 2 년 전
부모
커밋
5f1429f884
3개의 변경된 파일31개의 추가작업 그리고 2개의 파일을 삭제
  1. 9 0
      app/data/controller/calcTask.go
  2. 6 0
      app/device/dao/infoBoardDao.go
  3. 16 2
      app/device/service/infoBoardService.go

+ 9 - 0
app/data/controller/calcTask.go

@@ -49,6 +49,15 @@ func CalcTask() {
 		warnService.TaskWarnService.HandlingAlarms()
 	})
 
+	//每天早上07:10同步亮度与音量
+	c.AddFunc("0 10 7 * * ?", func() {
+		//c.AddFunc("*/10 * * * * ?", func() {
+		device.InfoBoardService.CronSyncBrightnessAndMusicvolume()
+	})
+	//每天晚上18:10同步亮度与音量
+	c.AddFunc("0 10 18 * * ?", func() {
+		//device.InfoBoardService.CronSyncBrightnessAndMusicvolume()
+	})
 	c.Start()
 }
 

+ 6 - 0
app/device/dao/infoBoardDao.go

@@ -104,6 +104,12 @@ func (c InfoBoard) GetAllDevices() ([]*InfoBoard, error) {
 	return devices, err
 }
 
+func (c InfoBoard) GetAllDevicesNotTenant() ([]*InfoBoard, error) {
+	var devices []*InfoBoard
+	err := Db.Debug().Model(&c).Where("is_deleted = 0 ").Scan(&devices).Error
+	return devices, err
+}
+
 func (c InfoBoard) GetDevicesByGateway() []InfoBoard {
 	var devices []InfoBoard
 	Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",

+ 16 - 2
app/device/service/infoBoardService.go

@@ -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)
+		}
+	}
 }