-
Notifications
You must be signed in to change notification settings - Fork 0
/
idm_reader.py
309 lines (270 loc) · 10.6 KB
/
idm_reader.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
# -*- coding: utf-8 -*-
import binascii
import serial
import nfc
import subprocess
import sys
import time
import random
import datetime
import mysql.connector
import numpy as np
from RPi import GPIO
from dateutil.relativedelta import relativedelta
import pprint
import pickle
import unicodecsv as csv
finIDm = 77408918390023174 #010101129C17E006 [ICOCA]
RasNum = 1
def calcDistance(data,number):
new=data[0][u'距離']
oldNumber=data[0][u'端末番号']
sum=oldNumber+number
if sum==3:
return 6.6
elif sum==4:
return 1.1
elif sum==5:
return 0.35
elif sum==6:
return 2.1
elif sum==7:
return 1.3
elif sum==8:
return 1
return 0
def custom_round(number, ndigits=0):
if type(number) == int:#整数ならそのまま返す
return number
d_point = len(str(number).split('.')[1])#小数点以下が何桁あるか定義
if ndigits >= d_point:#求める小数点以下の値が引数より大きい場合はそのまま返す
return number
c = (10 ** d_point) * 2
#小数点以下の桁数分元の数に0を足して整数にして2倍するための値(0.01ならcは200)
return round((number * c + 1) / c, ndigits)
#元の数に0を足して整数にして2倍して1を足して2で割る。元の数が0.01なら0.015にしてroundを行う
def format_float(num):
return ('%i' if num == int(num) else '%s') % num
def calcTime(dt,data):
oldTime=data[0][u'時間']
delta=dt-oldTime
delta=delta.total_seconds()
return delta/3600
def calcCalories(time,dist,data):
speed=dist/time
weight=data[0][u'体重']
#print ("speed: "+str(speed))
#print ("weight: "+str(weight))
cal=(0.1451*speed*speed-0.6804*speed+3.4571)*weight*time*1.05
return cal
class MyCardReader(object):
def on_connect(self, tag):
#print "touched"
self.idm = binascii.hexlify(tag.idm)
# LED
GPIO.output(17,0)
GPIO.output(27,0)
GPIO.output(22,1) #BlueLEDon
time.sleep(0.5)
GPIO.output(22,0)
return True
def read_id(self):
clf = nfc.ContactlessFrontend('usb')
try:
clf.connect(rdwr={'on-connect': self.on_connect})
finally:
clf.close()
def main():
GPIO.setmode(GPIO.BCM)
GPIO.setup(17,GPIO.OUT) #Red
GPIO.setup(27,GPIO.OUT) #Green
GPIO.setup(22,GPIO.OUT) #Blue
GPIO.output(17,1)
GPIO.output(27,1)
GPIO.output(22,0)
with open('message.pickle','rb')as p:
messageList=pickle.load(p)
#print "Started idm_reader !!!"
cr = MyCardReader()
while True:
GPIO.output(17,1)
GPIO.output(27,1)
GPIO.output(22,0)
#with open('speed.pickle','rb')as f:
# basedSpeed=pickle.load(f)
#print "touch card:"
cr.read_id()
idm_dec=int(cr.idm,16)
print idm_dec
with open('idm.txt','w') as writeIDm:
writeIDm.write(str(idm_dec))
print "released"
#print cr.idm
#host=ik1-333-26548.vs.sakura.ne.jp
#subprocess.call("php /var/www/html/2018_procon_wellness/data_download_S.php &",shell=True)
#subprocess.call("sudo cp /home/pi/procon29/FelicaReader/data.csv /var/www/html/2018_procon_wellness/data.csv &",shell=True)
connect = mysql.connector.connect(user='user1', password='Sotuken17-Feli', host='153.126.191.37', database='ikiiki', charset='utf8')
cursor = connect.cursor(buffered=True,dictionary=True)
#csvCur=connect.cursor(buffered=True)
# select
stmt='SELECT * FROM `ikiiki` WHERE `ID` = %s ORDER BY `時間` DESC'
cursor.execute(stmt,(idm_dec,))
#csvCur.execute(stmt,(idm_dec,))
row = cursor.fetchmany(2)
#csvRow=csvCur.fetchall()
zero='SELECT * FROM `ikiiki` WHERE `ID` = %s and `距離` =0 ORDER BY `時間` DESC'
cursor.execute(zero,(idm_dec,))
zero=cursor.fetchone()
#with codecs.open('data.csv','w','utf-8') as csvF:
# c = UnicodeWriter(csvF,quoting=csv.QUOTE_ALL)
# for x in csvRow:
# c.writerows(str(x))
#c.writerows(row.keys())
# l=pprint.pformat(i)
# print (l.decode('unicode-escape'))
#cursor.close()
# for i in zero:
# l=pprint.pformat(i)
# print(l.decode('unicode-escape'))
cursor.execute('select `距離`,`消費カロリー` from `ikiiki` where `ID` = %s and date(`時間`)=curdate() order by `時間` DESC',(idm_dec,))
today=cursor.fetchall()
#for i in today:
# l=pprint.pformat(i)
# print(l.decode('unicode-escape'))
cursor.execute('select `距離`,`消費カロリー` from `ikiiki` where `ID` = %s and yearweek(now(),1)=yearweek(`時間`,1) order by `時間` DESC',(idm_dec,))
thisweek=cursor.fetchall()
cursor.close()
#calculation Distance.
distance=calcDistance(row,RasNum)
#todayData=sum(today)
todayDistanceList=list(map(lambda x:x[u'距離'],today))
todayDistance=sum(todayDistanceList)+distance
print todayDistance
#todayDistance=sum(today[0])
#thisweekData=sum(thisweek)
thisweekDistanceList=list(map(lambda x:x[u'距離'],thisweek))
thisweekDistance=sum(thisweekDistanceList)+distance
print thisweekDistance
#todayDistance+=distance
#thisweekDistance+=distance
print("today's distance: "+str(todayDistance))
print("distance thisweek: "+str(thisweekDistance))
now = datetime.datetime.now()
nowtime = now.strftime('%Y-%m-%d %H:%M:%S')
#hours=calcTime(now,row)
hours=3
print("hours: "+str(hours))
if hours<1:
if RasNum==row[0][u'端末番号']:
GPIO.output(17,1)
time.sleep(0.2)
GPIO.output(17,0)
time.sleep(0.2)
GPIO.output(17,1)
time.sleep(0.2)
GPIO.output(17,0)
time.sleep(0.2)
GPIO.output(17,1)
time.sleep(0.8)
GPIO.output(17,0)
connect.close()
if idm_dec==finIDm:
break
continue
counts=row[0][u'回数']
counts+=1
kcal=calcCalories(hours,distance,row)
todaykcalList=list(map(lambda x:x[u'消費カロリー'],today))
thisweekkcalList=list(map(lambda x:x[u'消費カロリー'],thisweek))
todaykcal=sum(todaykcalList)+kcal
thisweekkcal=sum(thisweekkcalList)+kcal
#todaykcal+=kcal
#thisweekkcal+=kcal
print ("today's calories: "+str(todaykcal))
print("calories thisweek: "+str(thisweekkcal))
#print distance/hours
totalHours=row[0][u'総運動時間']+hours
#print ("totalHours: "+str(totalHours))
cardNumber=row[0]['CardNum']
totalDistance=row[0][u'総移動距離']+distance
print ("totalDistance: "+str(totalDistance))
totalCalories=row[0][u'総消費カロリー']+kcal
print ("totalCalories: "+str(totalCalories))
if hours<1:
zeroDistance=totalDistance-zero[u'総移動距離']
print("zero distance: "+str(zeroDistance))
zeroKcal=totalCalories-zero[u'総消費カロリー']
print("zero kcal: "+str(zeroKcal))
else:
zeroDistance=0
zeroKcal=0
height=row[0][u'身長']
weight=row[0][u'体重']
age=row[0][u'年齢']
sex=row[0][u'性別']
try:
cur=connect.cursor(prepared=True)
insert='INSERT INTO ikiiki(ID,CardNum,時間,距離,消費カロリー,総運動時間,総移動距離,総消費カロリー,端末番号,回数,身長,体重,年齢,性別) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?);'
#basedSpeed+=((distance/hours)-basedSpeed)/10
#with open('speed.pickle','wb')as f:
# pickle.dump(basedSpeed,f)
#print basedSpeed
if hours>1:
totalHours=totalHours-hours
totalCalories=totalCalories-kcal
counts=counts-1
totalDistance=totalDistance-distance
distance=0
kcal=0
cur.execute(insert,(str(idm_dec),str(cardNumber),nowtime,distance,kcal,totalHours,totalDistance,totalCalories,RasNum,counts,height,weight,age,sex))
connect.commit()
cursor.close()
connect.close()
GPIO.output(27,1)
time.sleep(0.4)
GPIO.output(27,0)
time.sleep(0.2)
GPIO.output(27,1) #Green LED on.
time.sleep(0.8)
GPIO.output(27,0)
except:
connect.rollback()
GPIO.output(17,0) #LEDoff
GPIO.output(27,0)
GPIO.output(22,0)
raise
if RasNum==1:
#subprocess.call("sudo rm -f /var/www/html/2018_procon_wellness/data.csv")
s=serial.Serial("/dev/ttyUSB0",38400)
nowtime=datetime.datetime.now().strftime('%Y年%m月%d日%H時%M分%S秒')
totalTimes='{0.hours}時間{0.minutes}分{0.seconds}秒'.format(relativedelta(hours=totalHours).normalized())
printStr='{0},{1:0=3},{2},{3},{4},{5},{6},{7},{8},{9}'
message=random.choice(messageList).encode('utf-8')
time.sleep(1.7)
#Today
if todayDistance!=0:
todayDistance+=zeroDistance
todaykcal+=zeroKcal
thisweekDistance+=zeroDistance
thisweekkcal+=zeroKcal
totalDistance+=zeroDistance
totalCalories+=zeroKcal
else:
continue
todayDistance=custom_round(todayDistance,2)
todaykcal=custom_round(todaykcal,2)
#Thisweek
thisweekDistance=custom_round(thisweekDistance,2)
thisweekkcal=custom_round(thisweekkcal,2)
totalDistance=custom_round(totalDistance,2)
totalCalories=custom_round(totalCalories,2)
print type(nowtime)
printStr=printStr.format(nowtime,cardNumber,format_float(todayDistance),format_float(todaykcal),format_float(thisweekDistance),format_float(thisweekkcal),totalTimes,format_float(totalDistance),format_float(totalCalories),message)
print printStr
s.write(printStr)
s.close()
if idm_dec == finIDm:
break
#print "Stopped idm_reader"
if __name__ == '__main__':
main()