-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOY1200.go
executable file
·110 lines (93 loc) · 4.07 KB
/
OY1200.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package main
import (
"encoding/base64"
"encoding/json"
"fmt"
"time"
)
type OY1200Data struct {
Time time.Time
CO2Raw uint16
CO2Filtered uint16
Temperature float32
Humidity float32
}
type decoded1200data struct {
DeviceEui string `json:"deviceEui"`
Seqno uint32 `json:"seqno"`
Port uint8 `json:"port"`
AppEui string `json:"appEui"`
Time string `json:"time"`
DeviceTx devicetx `json:"deviceTx,omitempty"`
GatewayRx []gatewayrx `json:"gatewayRx,omitempty"`
Data []OY1200Data `json:"data,omitempty"`
}
/*
"payload": {"applicationID": "20","applicationName": "TalkpoolOY","deviceName": "OY1100","devEUI": "20-56-31-55-54-33-57-14","rxInfo": [{"mac": "C0-EE-40-FF-FF-29-3D-F8","rssi": -33,"loRaSNR": 7.2,"name": "GW name","latitude": "","longitude": "","altitude": ""}],"txInfo": {"frequency": "X","dataRate": {"modulation": "LORA","bandwidth": "X","spreadFactor": "X"},"adr": true,"codeRate": "X"},"fCnt": 25,"fPort": 1,"data": [{"time": 1547008071054,"temp": 23.7,"hum": 62.1},{"time": 1547005891054,"temp": 23.7,"hum": 62},{"time": 1547010251054,"temp": 23.6,"hum": 60.8}]}
*/
func parseOY1200Data(receivedtime time.Time, port uint8, receiveddata string) []OY1200Data {
//Input Validation
//Length should be a multiple of 6
// fmt.Println("receiveddata",receiveddata)
databytes, _ := base64.StdEncoding.DecodeString(receiveddata)
var parsedvalues []OY1200Data
// fmt.Println("port", port)
// fmt.Println("length", len(databytes))
switch port {
case 1: //periodic single measurement
if len(databytes) != 12 {
return nil
}
fmt.Println("databytes", databytes)
capacity := len(databytes) / 12
fmt.Println("capacity", capacity)
parsedvalues = make([]OY1200Data, capacity)
for index := 0; index < capacity; index++ {
parsedvalues[index].CO2Raw = uint16(databytes[(index*7)+2])<<8 + uint16(databytes[(index*7)+3])
parsedvalues[index].CO2Filtered = uint16(databytes[(index*7)+4])<<8 + uint16(databytes[(index*7)+5])
parsedvalues[index].Temperature = float32(uint16(databytes[(index*7)+6])<<8+uint16(databytes[(index*7)+7])) / 100.0
parsedvalues[index].Humidity = float32(uint16(databytes[(index*7)+8])<<8+uint16(databytes[(index*7)+9])) / 100.0
parsedvalues[index].Time = receivedtime.Add(time.Duration((-15)*index) * time.Minute)
}
case 3: //periodic group measurement
// if len(databytes)%7 != 1 {
// return nil
// }
// databytes = databytes[1:]
// capacity := len(databytes) / 7
// parsedvalues = make([]OY1700Data, capacity)
// for index := 0; index < capacity; index++ {
// parsedvalues[index].Temperature = float32((int32(databytes[index*7])<<4|(int32(databytes[(index*7)+2])&0xF0)>>4)-800) / 10.0
// parsedvalues[index].Humidity = float32((int32(databytes[(index*7)+1])<<4|(int32(databytes[(index*7)+2])&0x0F))-250) / 10.0
// parsedvalues[index].Pm2_5 = uint16(databytes[(index*7)+3])<<8 + uint16(databytes[(index*7)+4])
// parsedvalues[index].Pm10 = uint16(databytes[(index*7)+5])<<8 + uint16(databytes[(index*7)+6])
// parsedvalues[index].Time = receivedtime.Add(time.Duration((-15)*index) * time.Minute)
// }
default:
return nil
}
return parsedvalues
}
func publishOY1200Data(dev device, entry loradata, parsedvalues []OY1200Data) {
loradatabytes, err := json.Marshal(entry)
if err != nil {
fmt.Println("Failed to encode message", err)
return
}
if !dev.RawData {
var decodeddata decoded1200data
if err := json.Unmarshal([]byte(loradatabytes), &decodeddata); err != nil {
fmt.Println("Failed to encode message", err) //This error is ok as the format of data is different
}
decodeddata.Data = append(decodeddata.Data, parsedvalues...)
loradecodeddatabytes, err := json.Marshal(decodeddata)
if err != nil {
fmt.Println("Failed to encode message", err)
return
}
fmt.Println("Data sent: ", string(loradecodeddatabytes))
transferDatatoEndPoint(loradecodeddatabytes, dev)
} else {
transferDatatoEndPoint(loradatabytes, dev)
}
}