|
@@ -1,4 +1,4 @@
|
|
-package util
|
|
|
|
|
|
+package service
|
|
|
|
|
|
import (
|
|
import (
|
|
"encoding/hex"
|
|
"encoding/hex"
|
|
@@ -7,7 +7,6 @@ import (
|
|
"fmt"
|
|
"fmt"
|
|
"github.com/tarm/serial"
|
|
"github.com/tarm/serial"
|
|
"log"
|
|
"log"
|
|
- "smart_tunnel_edge/mqtt"
|
|
|
|
"smart_tunnel_edge/util/config"
|
|
"smart_tunnel_edge/util/config"
|
|
"smart_tunnel_edge/util/logger"
|
|
"smart_tunnel_edge/util/logger"
|
|
"strconv"
|
|
"strconv"
|
|
@@ -82,14 +81,14 @@ func listenPort(portCode int8, port *serial.Port) {
|
|
n, err := port.Read(buf)
|
|
n, err := port.Read(buf)
|
|
if err != nil {
|
|
if err != nil {
|
|
log.Printf("读取串口数据失败: %v", err)
|
|
log.Printf("读取串口数据失败: %v", err)
|
|
- continue
|
|
|
|
|
|
+ return
|
|
}
|
|
}
|
|
if n > 0 {
|
|
if n > 0 {
|
|
dataString := hex.EncodeToString(buf[:n])
|
|
dataString := hex.EncodeToString(buf[:n])
|
|
- fmt.Println("数据:", dataString)
|
|
|
|
|
|
+ //fmt.Println("数据:", dataString)
|
|
switch {
|
|
switch {
|
|
case len(dataString) == 42 && dataString[2:6] == "0310": //环境传感器数据
|
|
case len(dataString) == 42 && dataString[2:6] == "0310": //环境传感器数据
|
|
- fmt.Print("环境传感:")
|
|
|
|
|
|
+ //fmt.Print("环境传感:")
|
|
shiDu, _ := strconv.ParseInt(dataString[6:10], 16, 0)
|
|
shiDu, _ := strconv.ParseInt(dataString[6:10], 16, 0)
|
|
wenDu, _ := strconv.ParseInt(dataString[10:14], 16, 0)
|
|
wenDu, _ := strconv.ParseInt(dataString[10:14], 16, 0)
|
|
gz, _ := strconv.ParseInt(dataString[30:38], 16, 0)
|
|
gz, _ := strconv.ParseInt(dataString[30:38], 16, 0)
|
|
@@ -106,15 +105,15 @@ func listenPort(portCode int8, port *serial.Port) {
|
|
}
|
|
}
|
|
|
|
|
|
jsonData, _ := json.Marshal(data)
|
|
jsonData, _ := json.Marshal(data)
|
|
- topic := mqtt.MqttService.GetTopic(mqtt.TopicGatherDataEnv)
|
|
|
|
- err := mqtt.MqttService.Publish(topic, jsonData)
|
|
|
|
|
|
+ topic := MqttService.GetTopic(TopicGatherDataEnv)
|
|
|
|
+ err := MqttService.Publish(topic, jsonData)
|
|
if err != nil {
|
|
if err != nil {
|
|
logger.Logger.Errorf("MQTT Publish err = %s", err.Error())
|
|
logger.Logger.Errorf("MQTT Publish err = %s", err.Error())
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
case len(dataString) == 14 && dataString[2:6] == "0302": //光照传感器数据
|
|
case len(dataString) == 14 && dataString[2:6] == "0302": //光照传感器数据
|
|
- fmt.Printf("光传感:")
|
|
|
|
|
|
+ //fmt.Printf("光传感:")
|
|
gz, _ := strconv.ParseInt(dataString[6:10], 16, 0)
|
|
gz, _ := strconv.ParseInt(dataString[6:10], 16, 0)
|
|
|
|
|
|
if _, exists := env[dataString[0:2]]; !exists {
|
|
if _, exists := env[dataString[0:2]]; !exists {
|
|
@@ -130,8 +129,8 @@ func listenPort(portCode int8, port *serial.Port) {
|
|
}
|
|
}
|
|
|
|
|
|
jsonData, _ := json.Marshal(data)
|
|
jsonData, _ := json.Marshal(data)
|
|
- topic := mqtt.MqttService.GetTopic(mqtt.TopicGatherDataOpt)
|
|
|
|
- err := mqtt.MqttService.Publish(topic, jsonData)
|
|
|
|
|
|
+ topic := MqttService.GetTopic(TopicGatherDataOpt)
|
|
|
|
+ err := MqttService.Publish(topic, jsonData)
|
|
if err != nil {
|
|
if err != nil {
|
|
logger.Logger.Errorf("MQTT Publish err = %s", err.Error())
|
|
logger.Logger.Errorf("MQTT Publish err = %s", err.Error())
|
|
continue
|
|
continue
|
|
@@ -151,10 +150,10 @@ func listenPort(portCode int8, port *serial.Port) {
|
|
timer.Reset(lightDuration)
|
|
timer.Reset(lightDuration)
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- OperationLampSwitchJudge(portCode, 100)
|
|
|
|
|
|
+ OperationLampSwitchJudge(portCode, HighLightLevel, 2, 1) //brightness代表亮度,way代表开关继电器回路数,turnOf代表开还是关,1代表开,0代表关
|
|
isLightOperate = true
|
|
isLightOperate = true
|
|
timer = time.AfterFunc(lightDuration, func() {
|
|
timer = time.AfterFunc(lightDuration, func() {
|
|
- OperationLampSwitchJudge(portCode, 20)
|
|
|
|
|
|
+ OperationLampSwitchJudge(portCode, LowLightLevel, 2, 0)
|
|
isLightOperate = false
|
|
isLightOperate = false
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -171,14 +170,33 @@ func listenPort(portCode int8, port *serial.Port) {
|
|
envAverage := calculateAverage(env)
|
|
envAverage := calculateAverage(env)
|
|
optAverage := calculateAverage(opt)
|
|
optAverage := calculateAverage(opt)
|
|
|
|
|
|
- fmt.Println("环境平均值:", envAverage)
|
|
|
|
- fmt.Println("光照平均值:", optAverage)
|
|
|
|
-
|
|
|
|
- //TODO 作比较,进行灯控操作并清空切片
|
|
|
|
- if envAverage-6 >= 0 {
|
|
|
|
-
|
|
|
|
|
|
+ control := config.Instance().Policy.Control
|
|
|
|
+ if envAverage-optAverage >= 20000 { //如果相差20000Lux开两路或者调节亮度为90%
|
|
|
|
+ if control == RegulateLight {
|
|
|
|
+ go SetLampBright(1, 90)
|
|
|
|
+ go SetLampBright(2, 90)
|
|
|
|
+ } else if control == RegulateSwitch {
|
|
|
|
+ go SetSwitchMultiRelay(1, 1, []int{1, 2, 3}) //int[]{}表达控制的回路
|
|
|
|
+ go SetSwitchMultiRelay(2, 1, []int{1, 2, 3})
|
|
|
|
+ }
|
|
|
|
+ } else if envAverage-optAverage >= 10000 { //如果相差10000Lux开两路或者调节亮度为60%
|
|
|
|
+ if control == RegulateLight {
|
|
|
|
+ go SetLampBright(1, 60)
|
|
|
|
+ go SetLampBright(2, 60)
|
|
|
|
+ } else if control == RegulateSwitch {
|
|
|
|
+ go SetSwitchRelay(1, 3, 0) //不管如何先将第三路关闭
|
|
|
|
+ go SetSwitchRelay(2, 3, 0)
|
|
|
|
+ go SetSwitchMultiRelay(1, 1, []int{1, 2})
|
|
|
|
+ go SetSwitchMultiRelay(2, 1, []int{1, 2})
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
-
|
|
|
|
|
|
+ if control == RegulateLight {
|
|
|
|
+ go SetLampBright(1, 30)
|
|
|
|
+ go SetLampBright(2, 30)
|
|
|
|
+ } else if control == RegulateSwitch {
|
|
|
|
+ go SetSwitchMultiRelay(1, 0, []int{2, 3})
|
|
|
|
+ go SetSwitchMultiRelay(2, 0, []int{2, 3})
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
env = make(map[string]int64)
|
|
env = make(map[string]int64)
|