task.go 955 B

12345678910111213141516171819202122232425262728293031
  1. package timer
  2. import (
  3. "github.com/robfig/cron"
  4. "smart_tunnel_edge/service"
  5. "smart_tunnel_edge/util/config"
  6. "time"
  7. )
  8. var commandQueue = make(chan []byte, 5)
  9. func TimeTasks() {
  10. c := cron.New()
  11. _ = c.AddFunc("0 */5 * * * ?", func() { //0/5 * * * * ?
  12. if config.Instance().Policy.Id == 3 { //如果当前策略是定时改变光照亮度
  13. endTime := config.Instance().Policy.EndTime
  14. startTime := config.Instance().Policy.StartTime
  15. currentTime := time.Now().Format("15:04")
  16. if currentTime == startTime {
  17. //开灯,将两条路亮度调高
  18. go service.OperationLampSwitchJudge(1, service.HighLightLevel, 2, 1)
  19. go service.OperationLampSwitchJudge(2, service.HighLightLevel, 2, 1)
  20. } else if currentTime == endTime {
  21. //关灯,将两条路亮度调低
  22. go service.OperationLampSwitchJudge(1, service.LowLightLevel, 2, 0)
  23. go service.OperationLampSwitchJudge(2, service.LowLightLevel, 2, 0)
  24. }
  25. }
  26. })
  27. c.Start()
  28. }