-
Notifications
You must be signed in to change notification settings - Fork 7
/
maverick.py
executable file
·651 lines (597 loc) · 23.3 KB
/
maverick.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
#!/usr/bin/env python3
# coding=utf-8
# maverick.py
# Receives Wireless BBQ Thermometer Telegrams via RF-Receiver
#
# (c) Martin Raatz, 2016
# Changed from fix offset to calculating the min and max length of the pulses based on Header AA99
# the pulswidth changes with every transmission on my ET733
# Checksum is same on ET732 and 733
#
# (c) Björn Schrader, 2015
# Code based on
# https://github.com/martinr63/OregonPi
# https://forums.adafruit.com/viewtopic.php?f=8&t=25414
# http://www.grillsportverein.de/forum/threads/wlan-maverick-bbq-thermometer-raspberry-pi-edition.232283/
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without
# limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so, subject to the following
# conditions:
# The above copyright notice and this permission notice shall be included in all copies or substantial
# portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
# LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import time
import pigpio
import argparse
import copy
import queue
import threading
import math
import random
import string
import os
parser = argparse.ArgumentParser(description='Receives Wireless BBQ Thermometer Telegrams via RF-Receiver')
parser.add_argument('--html', nargs='?', const='maverick.html', help='Writes a HTML file')
parser.add_argument('--json', nargs='?', const='maverick.json', help='Writes a JSON file')
parser.add_argument('--sqlite', nargs='?', const='maverick.sqlite', help='Writes to an SQLite Database')
parser.add_argument('--thingspeak', nargs='?', const='maverick.thingspeak', help='Writes to ThingSpeak (enter Write-API key)')
parser.add_argument('--debug', action='store_true', help='Generates additional debugging Output')
parser.add_argument('--pin', default=22, type=int, help='Sets the Pin number')
parser.add_argument('--nosync', action='store_true', help='Always register new IDs')
parser.add_argument('--fahrenheit', action='store_true', help='Sets the Output to Fahrenheit')
parser.add_argument('--noappend', action='store_true', help='Don´t append to file')
parser.add_argument('--verbose', action='store_true', help='Print more Information to stdout')
options = parser.parse_args()
if options.debug:
print(options)
# Globals für die Pinchange-Routine
oldtick = 0
oldlevel = None
state = 'wait'
packet = []
bit = 0
preamblecount = 0
traincount = 0
long_high = 0
long_low = 0
short_high = 0
short_low = 0
long_high_min = 0
long_low_min = 0
short_high_min = 0
short_low_min = 0
long_high_max = 0
long_low_max = 0
short_high_max = 0
short_low_max = 0
# Queue für fertige Pakete
packet_queue = queue.Queue()
# Liste der Sender für die Synchronisierung
unit_list = {}
def get_state (bitlist):
# Wertet das Statusbye aus
state = quart(bitlist[6*4:6*4+4]) << 2
state |= quart(bitlist[7*4:7*4+4])
if options.debug:
print('state ', state)
if state == 7:
return 'init'
elif state == 2:
return 'default'
else:
print('Unknown state:', state)
return 'unknown ' + str(state)
def bitlist_to_int (bitlist):
out = 0
for bit in bitlist:
out = (out << 1) | bit
return out
def bitlist_to_hexlist (bitlist):
# Gibt eine Bitliste als Hex aus
# nützlich zum debuggen
out = []
max = int(len(bitlist)/8)
for i in range(max):
out.append(hex(bitlist_to_int(bitlist[i*8:i*8+8])))
return out
def quart (raw):
# 4 zu 2 Umwandlung
if raw == [0,1,0,1]:
return 0
elif raw == [0,1,1,0]:
return 1
elif raw == [1,0,0,1]:
return 2
elif raw == [1,0,1,0]:
return 3
else:
print('Error in Quart conversion', raw)
return -1
def calc_chksum(bitlist):
# Berechnet die Checksumme anhand der Daten
chksum_data = 0
for i in range(12):
chksum_data |= quart(bitlist[(6+i)*4:(6+i)*4+4]) << 22-2*i
mask = 0x3331;
chksum = 0x0;
for i in range(24):
if (chksum_data >> i) & 0x01:
chksum ^= mask;
msb = (mask >> 15) & 0x01
mask = (mask << 1) & 0xFFFF
if msb == 1:
mask ^= 0x1021
return chksum
def chksum(bitlist):
# prüft die errechnete Checksumme gegen die übertragene
# gibt das Ergebniss zurück, da es gleichzeitig die
# zufällige ID des Senders ist
chksum_data = calc_chksum(bitlist)
chksum = 0
for i in range(6):
chksum |= quart(bitlist[(18+i)*4:((18+i)*4)+4]) << 14-i*2
# if bitlist[24*4:(24*4)+4] == [0,0,0,1] or bitlist[24*4:(24*4)+4] == [0,0,1,0]:
# # to be verified, our ET-733 use the ET-732 code below
# type = 'et733'
# chksum |= 0xFFFF & (quart(bitlist[25*4:(25*4)+4])&1) << 3
# chksum |= 0xFFFF & (quart(bitlist[25*4:(25*4)+4])&2) << 1
# if bitlist[24*4:(24*4)+4] == [0,0,1,0]:
# chksum |= 0x02
# else:
type = 'et732'
chksum |= 0xFFFF & quart(bitlist[24*4:(24*4)+4]) << 2
chksum |= 0xFFFF & quart(bitlist[25*4:(25*4)+4])
chksum = (chksum_data & 0xffff) ^ chksum
return type, chksum
def get_data (bitlist):
# Liest die Sensordaten aus dem Datenpaket aus
sensor1 = 0
sensor2 = 0
for i in range(5):
startbit = (4-i)*4
sensor1 += quart(bitlist[startbit+32:startbit+32+4]) * ( 1 << (2*i))
sensor2 += quart(bitlist[startbit+52:startbit+52+4]) * ( 1 << (2*i))
if sensor1 == 0:
sensor1 = ''
else:
sensor1 -= 532
if options.fahrenheit:
sensor1 = (((sensor1*9)/5) +32)
if sensor2 == 0:
sensor2 = ''
else:
sensor2 -= 532
if options.fahrenheit:
sensor2 = (((sensor2*9)/5) +32)
return [sensor1, sensor2]
def pinchange(gpio, level, tick):
# Interruptroutine
# wertet das Funksignal aus
global oldtick
global oldlevel
global state
global packet
global bit
global packet_queue
global preamblecount
global traincount
global long_high
global long_low
global short_high
global short_low
global long_high_min
global long_low_min
global short_high_min
global short_low_min
global long_high_max
global long_low_max
global short_high_max
global short_low_max
if oldlevel is None:
oldlevel = level
elif oldlevel == level:
print('\nLost_Tick!')
oldlevel = level
duration = tick - oldtick
oldtick = tick
if duration >= 70:
if options.debug and preamblecount > 0:
print(duration, ":", level, " ",sep="", end="", flush=False)
# wait ist der Wartestatus
if state == 'wait' and level == 1:
# lange Ruhe = vermutlich Preamble
if 4000 < duration < 5500:
state = 'preamble'
preamblecount = 1
if options.debug :
print('\npreamble', flush=True)
elif state == 'preamble':
if (380 < duration < 650):
if preamblecount > 6:
state = 'train'
traincount = 1
if options.debug :
print('train', flush=True)
bit = 1
packet[:] = []
packet.append(1)
packet.append(0)
packet.append(1)
packet.append(0)
packet.append(1)
packet.append(0)
packet.append(1)
packet.append(0)
packet.append(1)
packet.append(0)
packet.append(0)
packet.append(1)
packet.append(1)
packet.append(0)
packet.append(0)
packet.append(1)
long_high = 0
long_low = duration
short_high = 0
short_low = 0
long_high_min = 0
long_low_min = duration
short_high_min = 0
short_low_min = 0
long_high_max = 0
long_low_max = duration
short_high_max = 0
short_low_max = 0
else:
state = 'wait'
preamblecount = 0
if options.debug :
print('not enough long pulses', flush=True)
elif (100 < duration < 350):
state = 'preamble'
elif 4000 < duration < 5500:
preamblecount += 1
if options.debug :
print('preamble',preamblecount, flush=True)
else:
state = 'wait'
if options.debug :
print('wait', flush=True)
preamblecount = 0
elif state == 'train':
traincount += 1
if options.debug :
print('train',traincount, flush=True)
#L h L l L h L l L h L l L h L l S h S l L h S l S h L l S h S l L h
# 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
if traincount in (2, 4, 6, 8, 12, 18):
# Long high
long_high += duration
if long_high_min > duration :
long_high_min = duration
if long_high_max < duration :
long_high_min = duration
elif traincount in (3, 5, 7, 9, 15):
long_low += duration
if long_low_min > duration :
long_low_min = duration
if long_low_max < duration :
long_low_min = duration
elif traincount in (10, 14, 16) :
short_high += duration
if short_high_min > duration :
short_high_min = duration
if short_high_max < duration :
short_high_min = duration
elif traincount in (11, 13, 17):
short_low += duration
if short_low_min > duration :
short_low_min = duration
if short_low_max < duration :
short_low_min = duration
if traincount == 18:
long_high /= 6
long_low /= 6
short_high /= 3
short_low /= 3
state = 'data'
if long_high_min > long_high*0.75 :
long_high_min = long_high*0.75
if long_low_min > long_low*0.75 :
long_low_min = long_low*0.75
if short_high_min > short_high*0.2 :
short_high_min = short_high*0.2
if short_low_min > short_low*0.2 :
short_low_min = short_low*0.2
if long_high_max < long_high*1.4 :
long_high_max = long_high*1.4
if long_low_max < long_low*1.4 :
long_low_max = long_low*1.4
if short_high_max < short_high*1.25 :
short_high_max = short_high*1.25
if short_low_max < short_low*1.25 :
short_low_max = short_low*1.25
long_high_max = math.floor(long_high_max)
long_low_max = math.floor(long_low_max)
short_high_max = math.floor(short_high_max)
short_low_max = math.floor(short_low_max)
long_high_min = math.ceil(long_high_min)
long_low_min = math.ceil(long_low_min)
short_high_min = math.ceil(short_high_min)
short_low_min = math.ceil(short_low_min)
if options.debug :
print('long_high',round(long_high),"min",long_high_min,"max",long_high_max, flush=False)
print('short_high',round(short_high),"min",short_high_min,"max",short_high_max, flush=False)
print('long_low',round(long_low),"min",long_low_min,"max",long_low_max, flush=False)
print('short_low',round(short_low),"min",short_low_min,"max",short_low_max, flush=False)
print('data', flush=True)
elif state == 'data':
if level == 0:
# level == 0 heisst, es wurde ein HIGH-Impuls ausgewertet
if (short_low_min <= duration <= short_low_max ):
# kurzer LOW = 0 wiederholt
if options.debug :
print ("SL ",end="", flush=False)
if bit == 0:
packet.append(0)
elif (long_low_min <= duration <= long_low_max):
# langes LOW = 0
if options.debug :
print ("LL ",end="", flush=False)
packet.append(0)
bit = 0
else:
# ungueltige Zeit
state = 'wait'
if options.debug :
print('wait ungueltig 0 bei ',len(packet), flush=True)
preamblecount = 0
else:
if (short_high_min <= duration <= short_high_max):
# kurzer HIGH = 1 wiederholt
if options.debug :
print ("SH ",end="", flush=False)
if bit == 1:
packet.append(1)
elif (long_high_min <= duration <= long_high_max):
# langes HIGH = 1
if options.debug :
print ("LH ",end="", flush=False)
packet.append(1)
bit = 1
else:
# ungueltige Zeit
state = 'wait'
if options.debug :
print('wait ungueltig 1 bei ',len(packet), flush=True)
preamblecount = 0
if len(packet) == 104:
# komplettes Paket empfangen
if options.debug :
print('wait - ready', flush=True)
state = 'wait'
preamblecount = 0
packet_queue.put((time.time(),list(packet)))
packet[:] = []
def updated(id, state, timestamp):
# Prüft ob in den letzten 5s ein Paket vom gleichen Sender empfangen wurde
global unit_list
if id in unit_list:
if (unit_list[id] + 5) < timestamp:
unit_list[id] = timestamp
if options.debug:
print('units:', unit_list)
return True
else:
return False
else:
if state == 'init' or options.nosync:
# trägt neue Sender nur ein, wenn diese im Sync-Status sind, oder --nosync aktiv ist
unit_list[id] = timestamp
if options.debug:
print('units:', unit_list)
return True
else:
return False
def get_random_filename(filename):
return filename + '_' + ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(12))
def worker():
if options.verbose:
print('Main task running')
# Hauptthread, wertet empfangene Pakete aus und verteilt an die anderen Queues
global unit_list
if options.fahrenheit:
unit = 'F'
else:
unit = '°C'
while True:
item_time, item = packet_queue.get()
type, chksum_is = chksum(item)
temp1, temp2 = get_data(item)
state = get_state(item)
if updated(chksum_is, state, item_time):
if options.html != None:
html_queue.put((item_time, chksum_is, type, temp1, temp2))
if options.json != None:
json_queue.put((item_time, chksum_is, type, temp1, temp2))
if options.sqlite != None:
sqlite_queue.put((item_time, chksum_is, type, temp1, temp2))
if options.thingspeak != None:
thingspeak_queue.put((item_time, chksum_is, type, temp1, temp2))
if options.verbose:
print(time.strftime('%c:',time.localtime(item_time)), '-', chksum_is, '- Temperatur 1:', temp1, unit, 'Temperatur 2:', temp2, unit)
if options.debug:
print('raw:', item)
print('hex', bitlist_to_hexlist(item))
packet_queue.task_done()
def json_writer():
# schreibt ein JSON-Logfile
if options.verbose:
print('Starting JSON writer Task')
if options.fahrenheit:
unit = '° F'
else:
unit = '°C'
while True:
item_time, chksum_is, type, temp1, temp2 = json_queue.get()
set = {'time': item_time, 'checksum': chksum_is, 'type' : type, 'unit': unit, 'temperature_1' : temp1, 'temperature_2' : temp2}
if options.noappend:
tmp_filename = get_random_filename(options.json)
with open(tmp_filename, 'w') as json_file:
json_file.write(json.dumps(set))
json_file.flush()
os.fsync(json_file.fileno())
json_file.close()
os.rename(tmp_filename, options.json)
else:
with open(options.json, 'a') as json_file:
json_file.write(json.dumps(set) + ',')
json_file.flush()
json_queue.task_done()
def html_writer():
# schreibt eine HTML-Datei (ohne Header und Footer)
if options.verbose:
print('Starting HTML writer Task')
html_file = open(options.html, 'a')
if options.fahrenheit:
unit = 'F'
else:
unit = '°C'
while True:
item_time, chksum_is, type, temp1, temp2 = html_queue.get()
print(time.strftime('%c:',time.localtime(item_time)), type, '-', chksum_is, '- Temperatur 1:', temp1, unit, 'Temperatur 2:', temp2, unit, '<br>', file=html_file)
html_file.flush()
html_queue.task_done()
def sqlite_writer():
# speichert die Empfangenen Daten in eine SQlite Datei
if options.verbose:
print('Starting SQLite writer Task')
sqlite_conn = sqlite3.connect(options.sqlite)
sqlite_c = sqlite_conn.cursor()
sqlite_c.execute('''CREATE TABLE IF NOT EXISTS maverick
(date integer, type text, id integer, temperature_1 real, temperature_2 real)''')
while True:
item_time, chksum_is, type, temp1, temp2 = sqlite_queue.get()
sqlite_c.execute("INSERT INTO maverick VALUES (?, ?, ?, ?, ?)", (int(item_time), type, chksum_is, temp1, temp2))
sqlite_conn.commit()
sqlite_queue.task_done()
def thingspeak_writer():
global options
# postet die Daten auf Thingspeak
unit_list = {}
if options.verbose:
print('Starting ThingSpeak writer Task')
while True:
queueempty = False
# Bei neuen Daten sofort senden, ansonsten nach 15s (Mindestintervall, anonsten werden die gesendeten Daten ignoriert
try:
item_time, chksum_is, type, temp1, temp2 = thingspeak_queue.get(True, 15)
except queue.Empty:
queueempty = True
# Neue Daten verarbeiten
# Es werden maximal 4 Empfänger mit je 2 Kanälen unterstützt, da ThingSpeak 8 Kanäle (Felder) unterstützt
if not queueempty:
id = 4
if chksum_is in unit_list:
if options.verbose:
print('Unit in List')
unit_list[chksum_is]['timestamp'] = int(item_time)
unit_list[chksum_is]['temp1'] = temp1
unit_list[chksum_is]['temp2'] = temp2
id = unit_list[chksum_is]['id']
else:
if len(unit_list) >= 4:
if options.verbose:
print('Maximum Number of Unit reached')
maxage = int(time.time() - 20)
oldestage = time.time()
oldestchksum = 0
for chksum, unit in unit_list.items():
if unit['timestamp'] <= maxage and unit['timestamp'] < oldestage:
oldestchksum = chksum
oldestage = unit['timestamp']
id = unit['id']
if oldestchksum != 0:
del unit_list[oldestchksum]
else:
print('All Slots in use, ignoring Device ', chksum_is)
continue
else:
if options.verbose:
print('Adding Unit to List')
slots = list(range(4))
for chksum, unit in unit_list.items():
slots.remove(unit['id'])
id = slots[0]
unit_list[chksum_is] = {'timestamp': int(item_time), 'id': id, 'temp1': temp1, 'temp2': temp2}
# Keine neuen Daten empfangen, damit nichts verloren geht trotzdem in den letzten 30s empfangene Daten senden
else:
if options.verbose:
print('Nothing new received')
status = ''
fields = {}
tosend = False
# Welche Sender wurden in den letzten 30s empfangen
for chksum, unit in unit_list.items():
if unit['timestamp'] >= time.time() - 30:
tosend = True
fields.update({'field' + str(unit['id']*2+1): unit['temp1'], 'field' + str(unit['id']*2+2): unit['temp2']})
# Im Statusfeld wird ein Zuordnung der Kanäle zu den Sendern übermittelt
status += str(unit['id']*2+1) + '/' + str(unit['id']*2+2) + ':' + str(chksum) + ' '
if options.verbose:
print('Statusstring: ', status)
data = {'api_key':options.thingspeak, 'status': status}
data.update(fields)
params = urllib.parse.urlencode(data)
params = params.encode('utf-8')
headers = {"Content-type": "application/x-www-form-urlencoded","Accept": "text/plain"}
request = urllib.request.Request('http://api.thingspeak.com/update', params, headers)
# Wenn Daten vorliegen, senden
if tosend:
if options.verbose:
print('Sending to ThingSpeak')
with urllib.request.urlopen(request) as response:
pass
#TODO Fehlerhandling
pi = pigpio.pi() # connect to local Pi
oldtick = pi.get_current_tick()
pi.set_mode(options.pin, pigpio.INPUT)
pi.set_noise_filter(options.pin, 4500, 400000)
callback1 = pi.callback(options.pin, pigpio.EITHER_EDGE, pinchange)
start = time.time()
if options.html != None:
html_queue = queue.Queue()
html_writer_worker = threading.Thread(target=html_writer)
html_writer_worker.daemon = True
html_writer_worker.start()
if options.json != None:
import json
json_queue = queue.Queue()
json_writer_worker = threading.Thread(target=json_writer)
json_writer_worker.daemon = True
json_writer_worker.start()
if options.sqlite != None:
import sqlite3
sqlite_queue = queue.Queue()
sqlite_writer_worker = threading.Thread(target=sqlite_writer)
sqlite_writer_worker.daemon = True
sqlite_writer_worker.start()
if options.thingspeak != None:
import urllib.request
import urllib.parse
thingspeak_queue = queue.Queue()
thingspeak_writer_worker = threading.Thread(target=thingspeak_writer)
thingspeak_writer_worker.daemon = True
thingspeak_writer_worker.start()
worker1 = threading.Thread(target=worker)
worker1.daemon = True
worker1.start()
while (1):
time.sleep(0.2)
pi.stop()