forked from magapp/rego6xx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rego6xx.py
executable file
·214 lines (181 loc) · 7.41 KB
/
rego6xx.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/usr/bin/env python
# More information: http://rago600.sourceforge.net/
#
# Version 1.00 2013-11-13 Magnus Appelquist
# - Initial release
#
import serial
import datetime
import time
import logging
import argparse
import json
import urllib
def main():
parser = argparse.ArgumentParser(description='Rego6xx reader', prog='rego6xx')
parser.add_argument('--version', action='version', version='%(prog)s 1.0 https://github.com/magapp/rego6xx')
parser.add_argument("--port", help="Which device serial port can be found on. Default: %(default)s", default="/dev/ttyUSB0")
parser.add_argument('--debug', action='store_true', help='Print debug messages')
parser.add_argument('--graphite', action='store_true', help='Display in Graphite readable format')
parser.add_argument('--json', action='store_true', help='Display in json emoncms readable format')
parser.add_argument('--push', action='store_true', help="Pusch json data to webservice e.g emoncms")
parser.add_argument('--pushurl', help="Push to URL e.g emoncms. Default: %(default)s", default="http://localhost/input/post.json?node=3&apikey=&json={%s}" )
parser.add_argument('--display', action='store_true', help='Read the display')
parser.add_argument('--sensor', action='append', help='Which sensor to read. Multiple sensor arguments can be added, such as "--sensor GT1 --sensor alarm".', choices=Rego.reg.keys().append(["all"]))
parser.add_argument('--map-name', action='append', help='Map sensor name on output. Multiple map-name arguments can be added. Example: "--map-name GT2,outdoor --map-name PT1,motor"')
args = parser.parse_args()
if args.sensor:
if args.sensor[0]=="all":
args.sensor=Rego.reg.keys()
if not (args.sensor or args.display):
parser.error('No action requested, add --sensor GT1 or --display or --push')
if args.debug:
logging.basicConfig(level=logging.DEBUG)
console = logging.StreamHandler()
logging.getLogger('').addHandler(console)
if args.json:
jsondata = {}
if args.display:
print "display"
map_name = dict()
if args.sensor:
if args.map_name:
for map in args.map_name:
try:
sensor,name = map.split(",")
except:
logging.warning("Could not parse '%s'" % map)
break
map_name[sensor] = name
# calculate longest name so we can print pretty
name_length = max([len(x) for x in Rego.reg.keys()+map_name.values()])
timestamp = datetime.datetime.now().strftime("%s")
s = Rego(port=args.port)
for sensor in args.sensor:
if "GT" in sensor:
value = s.read_temperature(sensor)
if map_name.has_key(sensor): sensor = map_name[sensor]
if args.push:
pushdata(args.pushurl,sensor,value)
else:
print_line(sensor, "%.1f" % value, name_length, args.graphite, timestamp)
else:
value = s.read_sensor(sensor)
if map_name.has_key(sensor): sensor = map_name[sensor]
if args.push:
pushdata(args.pushurl,sensor,value)
else:
if value:
print_line(sensor, "ON", name_length, args.graphite, timestamp)
else:
print_line(sensor, "OFF", name_length, args.graphite, timestamp)
if args.json:
print json.dumps(jsondata)
def print_line(sensor, value, name_length=10, graphite=False, argjson=False, timestamp=0):
if graphite:
if value == "ON": value = 1
if value == "OFF": value = 0
print u"%s %s %s" % (sensor, value, timestamp)
else:
unit = "C"
if value == "ON" or value == "OFF": unit = ""
print u"%-*s = %s %s" % (name_length, sensor, value, unit)
def pushdata(url, input_name,data):
inputstring = input_name + ':' + str(data)
url = url % inputstring
# print url
wudata = urllib.urlopen(url)
response = wudata.read()
result = response.strip()
wudata.close()
return
class Rego:
ser = None
# register mapping for Rego600-635:
reg = {
"GT1": b'\x02\x09',
"GT2": b'\x02\x0A',
"GT3": b'\x02\x0B',
"GT4": b'\x02\x0C',
"GT5": b'\x02\x0D',
"GT6": b'\x02\x0E',
"GT8": b'\x02\x0F',
"GT9": b'\x02\x10',
"GT10": b'\x02\x11',
"GT11": b'\x02\x12',
"GT3x": b'\x02\x13',
"3kW" : b'\x01\xff',
"6kW" : b'\x02\x00',
"P1" : b'\x02\x03',
"P2" : b'\x02\x04',
"VXV" : b'\x02\x05',
"alarm" : b'\x02\x06',
"heatpower" : b'\x00\x6c'
# "display" : b'\x00\x00',
}
def __init__(self, port='/dev/ttyUSB0', baudrate=19200, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS, timeout=2):
self.ser = serial.Serial(port=port, baudrate=baudrate, parity=parity, stopbits=stopbits, bytesize=bytesize, timeout=timeout)
self.ser.flushInput()
self.ser.flushOutput()
logging.info("Connected to: " + self.ser.portstr)
def read_temperature(self, sensor):
try:
reg = self.reg[sensor]
except:
logging.error("No such sensor")
return False
# make decimal:
return float(self._read_reg(reg)) / float(10)
def read_sensor(self, sensor):
try:
reg = self.reg[sensor]
except:
logging.error("No such sensor")
return False
return self._read_reg(reg)
def _read_reg(self, reg):
# convert 8 bit to 7 and hex:
reg = "".join([chr(val << ((len(reg)-1-i))) for i, val in list(enumerate(map(lambda x: (ord(x) & 127), reg)))])
if len(reg) == 1:
reg = b'\x00'+reg
if len(reg) == 2:
reg = b'\x00'+reg
str = b'\x81\x02' # read from rego
str = str + reg
str = str + b'\x00\x00\x00' # data
str = str + self._checksum(str[2:5])
# retry 25 times of invalid response:
for i in range(0,25):
self.ser.write(str)
r = self._get_response()
if r != None: break
logging.warning("Retry (%d) and flush" % i)
self.ser.flushInput()
self.ser.flushOutput()
return r
def _decode(self, str):
# convert from 7 bit to 8 bit:
data = sum([val << ((len(str)-1-i)*7) for i, val in list(enumerate(map(lambda x: (ord(x) & 127), str)))])
# convert to signed:
if (data & 0x8000):
data = -0x10000 + data
return data
def _checksum(self, str):
# xor each byte:
return chr(reduce(lambda x,y:x^y, map(ord, str)) % 256)
def _get_response(self):
# 0x01, <3 byte data>, <checksum>
# Example: 0x01 0x03 0x7c 0x1d 0x62
r = self.ser.read(5)
if len(r) != 5 or r[0] != "\x01":
logging.warning("Invalid response '%s'" % r.encode("hex"))
return None
data = r[1:4]
if r[4] != self._checksum(data):
logging.warning("Incorrect checksum '%s'" % r.encode("hex"))
return None
logging.debug("Response '%s'" % data.encode("hex"))
# print data
return self._decode(data)
if __name__ == "__main__":
main()