-
Notifications
You must be signed in to change notification settings - Fork 0
/
LR210.go
executable file
·146 lines (113 loc) · 3.99 KB
/
LR210.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package main
import (
"encoding/base64"
"encoding/json"
"fmt"
"strconv"
"time"
)
type LR210Data struct {
Time time.Time
Relay1 string
Relay2 string
Temperature float64
}
type decodedlr210data 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 []LR210Data `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 parseLR210Data(receivedtime time.Time, port uint8, receiveddata string) []LR210Data {
//Input Validation
//Length should be a multiple of 6
var parsedvalues []LR210Data
databytes, _ := base64.StdEncoding.DecodeString(receiveddata)
capacity := len(databytes) / 4
parsedvalues = make([]LR210Data, capacity)
//
fmt.Println("databytes", databytes)
dst := ByteToHex(databytes)
fmt.Println("Hex=", dst)
switch port {
case 1: //status
case 2: //periodic single measurement
//00 01 04 4c
//first1 := dst[0:2]
first2 := dst[2:4]
first3 := dst[4:6]
first4 := dst[6:8]
//fmt.Println("first1=",first1)
//fmt.Println("first2=",first2)
//fmt.Println("first3=",first3)
//fmt.Println("first4=",first4)
var strRev string
var k float64
str1 := first3 + first4
strRev = fmt.Sprint(str1)
sat1, _ := strconv.ParseInt(hexaNumberToInteger(strRev), 16, 64) //strconv.Atoi(strRev)
k = float64(sat1)
b := (k / 10)
//relay1,err:=strconv.ParseInt(first1 ,16,64)
relay2, _ := strconv.ParseInt(first2, 16, 64)
//fmt.Println("relay1=",relay1)
for index := 0; index < capacity; index++ {
parsedvalues[index].Temperature = float64(b - 80)
switch relay2 {
case 0:
parsedvalues[index].Relay1 = "Deactivated"
parsedvalues[index].Relay2 = "Deactivated"
case 1:
parsedvalues[index].Relay1 = "Activated"
parsedvalues[index].Relay2 = "Deactivated"
case 2:
parsedvalues[index].Relay1 = "Deactivated"
parsedvalues[index].Relay2 = "Activated"
case 3:
parsedvalues[index].Relay1 = "Activated"
parsedvalues[index].Relay2 = "Activated"
default:
parsedvalues[index].Relay1 = "Deactivated"
parsedvalues[index].Relay2 = "Deactivated"
}
parsedvalues[index].Time = receivedtime.Add(time.Duration((-15)*index) * time.Minute)
// if err != nil {
// // handle error
// }
}
default:
return nil
}
fmt.Println("parsedvalues: ", parsedvalues)
return parsedvalues
}
func publishLR210Data(dev device, entry loradata, parsedvalues []LR210Data) {
loradatabytes, err := json.Marshal(entry)
if err != nil {
fmt.Println("Failed to encode message", err)
return
}
if !dev.RawData {
var decodeddata decodedlr210data
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)
}
}