forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrfid.py
165 lines (156 loc) · 6.27 KB
/
rfid.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
#!/usr/bin/python
import argparse
import paho.mqtt.client as mqtt
import sys
import os
import time
import datetime
import getopt
import socket
import struct
import binascii
import RPi.GPIO as GPIO
os.chdir('/var/www/html/openWB/')
loglevel=1
counter=0
Values = { }
Values.update({'newplugstatlp1' : str(0)})
Values.update({'newplugstatlp2' : str(0)})
Values.update({'newplugstatlp3' : str(0)})
Values.update({'newplugstatlp4' : str(0)})
Values.update({'oldplugstatlp1' : str(0)})
Values.update({'oldplugstatlp2' : str(0)})
Values.update({'oldplugstatlp3' : str(0)})
Values.update({'oldplugstatlp4' : str(0)})
Values.update({'lastpluggedlp' : str(0)})
Values.update({'lastscannedtag' : str(0)})
Values.update({'rfidlasttag' : str(0)})
def logDebug(level, msg):
if (int(level) >= int(loglevel)):
file = open('ramdisk/rfid.log', 'a')
if (int(level) == 0):
file.write(time.ctime() + ': ' + str(msg)+ '\n')
if (int(level) == 1):
file.write(time.ctime() + ': ' + str(msg)+ '\n')
if (int(level) == 2):
file.write(time.ctime() + ': ' + str('\x1b[6;30;42m' + msg + '\x1b[0m')+ '\n')
file.close()
def readrfidlist():
global rfidlist
with open('ramdisk/rfidlist', 'r') as value:
rfidstring = str(value.read())
rfidlist=rfidstring.rstrip().split(",")
def getplugstat():
try:
with open('ramdisk/plugstat', 'r') as value:
Values.update({'newplugstatlp1' : int(value.read())})
if ( Values["oldplugstatlp1"] != Values["newplugstatlp1"] ):
if ( Values["newplugstatlp1"] == 1 ):
Values.update({'lastpluggedlp' : str(1)})
logDebug(1, str("Angesteckt an LP1"))
else:
logDebug(1, str("Abgesteckt, Sperre LP1"))
f = open('ramdisk/lp1enabled', 'w')
f.write(str("0"))
f.close()
Values.update({"oldplugstatlp1" : Values["newplugstatlp1"]})
except:
pass
try:
with open('ramdisk/plugstats1', 'r') as value:
Values.update({'newplugstatlp2' : int(value.read())})
if ( Values["oldplugstatlp2"] != Values["newplugstatlp2"] ):
if ( Values["newplugstatlp2"] == 1 ):
Values.update({'lastpluggedlp' : str(2)})
logDebug(1, str("Angesteckt an LP2"))
else:
logDebug(1, str("Abgesteckt, Sperre LP2"))
f = open('ramdisk/lp2enabled', 'w')
f.write(str("0"))
f.close()
Values.update({"oldplugstatlp2" : Values["newplugstatlp2"]})
except:
pass
try:
with open('ramdisk/plugstatlp3', 'r') as value:
Values.update({'newplugstatlp3' : int(value.read())})
if ( Values["oldplugstatlp3"] != Values["newplugstatlp3"] ):
if ( Values["newplugstatlp3"] == 1 ):
Values.update({'lastpluggedlp' : str(3)})
logDebug(1, str("Angesteckt an LP3"))
else:
logDebug(1, str("Abgesteckt, Sperre LP3"))
f = open('ramdisk/lp3enabled', 'w')
f.write(str("0"))
f.close()
Values.update({"oldplugstatlp3" : Values["newplugstatlp3"]})
except:
pass
try:
with open('ramdisk/plugstatlp4', 'r') as value:
Values.update({'newplugstatlp4' : int(value.read())})
if ( Values["oldplugstatlp4"] != Values["newplugstatlp4"] ):
if ( Values["newplugstatlp4"] == 1 ):
Values.update({'lastpluggedlp' : str(4)})
logDebug(1, str("Angesteckt an LP4"))
else:
logDebug(1, str("Abgesteckt, Sperre LP4"))
f = open('ramdisk/lp4enabled', 'w')
f.write(str("0"))
f.close()
Values.update({"oldplugstatlp4" : Values["newplugstatlp4"]})
except:
pass
logDebug(1, str("Plugstat: " + str(Values["newplugstatlp1"]) + str(Values["newplugstatlp2"]) + str(Values["newplugstatlp3"]) + str(Values["newplugstatlp4"])))
def conditions():
if ( Values["lastpluggedlp"] != "0"):
logDebug(1, str(Values["lastpluggedlp"]) + str("prüfe auf rfid scan"))
try:
with open('ramdisk/readtag', 'r') as value:
Values.update({'lastscannedtag' : int(value.read().rstrip())})
if ( Values["lastscannedtag"] != "0"):
for i in rfidlist:
if (str(i) == str(Values["lastscannedtag"])):
logDebug(1, str("Schalte Ladepunkt: ") + str(Values["lastpluggedlp"]) + str(" frei"))
f = open('ramdisk/lp'+str(Values["lastpluggedlp"])+'enabled', 'w')
f.write(str("1"))
f.close()
f = open('ramdisk/rfidlp' + str(Values["lastpluggedlp"]), 'w')
f.write(str(Values["lastscannedtag"]))
f.close()
logDebug(1, str("Schreibe Tag: ")+str(Values["lastscannedtag"])+str(" zu Ladepunkt"))
Values.update({'lastpluggedlp' : "0"})
f = open('ramdisk/readtag', 'w')
f.write(str(0))
f.close()
except Exception as e:
logDebug(1, str(e))
pass
def savelastrfidtag():
with open('ramdisk/readtag', 'r') as readtagfile:
readtag = int( readtagfile.read().rstrip() )
if ( ( str(readtag) != Values["rfidlasttag"] ) and ( str(readtag) != "0" ) ):
logDebug(1, str("savelastrfidtag: change detected, updating ramdisk"))
f = open('ramdisk/rfidlasttag', 'w')
f.write(str(readtag) + str(",") + str(os.path.getmtime('ramdisk/readtag')))
f.close()
Values.update({'rfidlasttag' : str(readtag)})
def clearoldrfidtag():
t = os.path.getmtime('ramdisk/readtag')
timediff = time.time() - t
if timediff > 300:
logDebug(1, str("Verwerfe Tag nach ") + str(timediff) + str(" Sekunden"))
f = open('ramdisk/readtag', 'w')
f.write(str("0"))
f.close()
readrfidlist()
while True:
getplugstat()
conditions()
savelastrfidtag()
clearoldrfidtag()
counter= counter + 1
if ( counter > 10 ):
readrfidlist()
counter = 0
time.sleep(2)