-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnfcservo.py
337 lines (278 loc) · 12 KB
/
nfcservo.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
#!/usr/bin/env python
#! -*- coding:utf-8 -*-
import binascii
import nfc
import RPi.GPIO as GPIO
import datetime
import time
import sqlite3
###### NFC readerの設定 ######
# Suica待ち受けの1サイクル秒
TIME_cycle = 1.0
# Suica待ち受けの反応インターバル秒
TIME_interval = 0.2
# タッチされてから次の待ち受けを開始するまで無効化する秒
TIME_wait = 3
# NFC接続リクエストのための準備
# 212F(FeliCa)で設定
target_req_suica = nfc.clf.RemoteTarget("212F")
# スイカ指定(コメントアウトでiDとかにも対応.なお,iphoneのスイカには非対応になる.)
target_req_suica.sensf_req = bytearray.fromhex("0000030000")
##########################
###### GPIOの設定 #######
#「GPIO4出力」でPWMインスタンスを作成する。
#GPIO.PWM( [ピン番号] , [周波数Hz] )
#SG92RはPWMサイクル:20ms(=50Hz), 制御パルス:0.5ms〜2.4ms, (=2.5%〜12%)。
SERVO_GPIO = 4 #Raspberyy Piのサーボモータと接続詞ているGPIOのピン番号
SERVO_PWM = 50 #サーボモータのPWMサイクル値(SG-90の場合、20ms=50Hz)
SERVO_OPEN =10.85 #時にサーボモータに渡すデューティサイクル値(鍵に合わせて変更)
SERVO_CLOSE =4.55 #施錠時にサーボモータに渡すデューティサイクル値(鍵に合わせて変更)
SERVO_wait = 7.7 #施錠時にサーボモータに渡すデューティサイクル値(鍵に合わせて変更)
button_GPIO = 3 # データベースプログラムに入るスイッチのピン番号
GPIO.setmode(GPIO.BCM)
GPIO.setup(SERVO_GPIO, GPIO.OUT)
GPIO.setup(button_GPIO, GPIO.IN,pull_up_down=GPIO.PUD_UP)
##########################
###### 各種記録 #######
# 鍵の状態を記録w
status = ""
# GPIOボタンの状態を記録
gpio_button = ""
####################
def nfc_imput():
global gpio_button
# USBに接続されたNFCリーダに接続してインスタンス化
clf = nfc.ContactlessFrontend('usb')
while True:
# Suica待ち受け開始
# clf.sense( [リモートターゲット], [検索回数], [検索の間隔] )
target_res = clf.sense(target_req_suica, iterations=int(TIME_cycle//TIME_interval)+1 , interval=TIME_interval)
if target_res is not None:
tag = nfc.tag.activate_tt3(clf, target_res)
tag.sys = 3
#IDmを取り出す
idm = binascii.hexlify(tag.idm)
break #NFC待ちループから抜ける
#スイッチが押されたら,
if GPIO.input(button_GPIO) == 0:
gpio_button = "0"
idm = "gpiobutton"
break
clf.close()
return idm
# データベースの中身を変更
def database_change():
print("NFC登録データベースを改変します。以下の選択肢から該当番号を入力してください。\n データの追加:1\n データの削除:2\n 全データの照会:3")
#number = waitinput
number = input('該当番号>> ')
# データの追加
if number == str(1):
print("名前とsuicaを登録します.")
print("あなたの名前を教えてください。 例 Shintaro_Hasegawa")
your_name = input('name>> ')
print("name : " + your_name)
print("登録するNFCカードをリーダーにかざしてください")
idm = nfc_imput()
person_name = str(your_name)
idm_number = str(idm)
detect_time = str(time.time())
print("[登録内容]" + " name:" + person_name + ", idm:" + idm_number + ", time:" + detect_time)
# データベースにidm_numberがあるかどうか検索
serchresult = databese_namelist.idm_serch(idm_number)
# idmがデータベースになかったら
if serchresult == None:
databese_namelist.insert(person_name, idm_number, detect_time)
print(">>> registered your name and nfc card.")
# idmがデータベースにあったら
else:
databese_namelist.update(person_name, idm_number, detect_time)
print(serchresult[0] + " >> " + person_name)
print(">>> database was updated.")
# データの削除
elif number == str(2):
print("登録データの削除をします.")
print("削除するNFCカードをリーダーにかざしてください")
idm_number = str(nfc_imput())
# データベースにidm_numberがあるかどうか検索
serchresult = databese_namelist.idm_serch(idm_number)
# idmがデータベースにあったら
if serchresult is not None:
databese_namelist.delete(idm_number)
print(">>> Data deletion completed")
# idmがデータベースになかったら
else:
print(">>> このNFCカードは登録されていません")
# データの表示
elif number == str(3):
print("登録されているIDの一覧を表示します.")
datas = databese_namelist.show()
for data in datas:
print(data)
else:
print("errer")
print("半角で 1 or 2 or 3を入力して")
time.sleep(1)
#NFCのタッチしたログを保存する
class Databese_Touchlog():
def __init__(self):
self.dbpath = '/home/pi/nfcname.db'
self.connection = sqlite3.connect(self.dbpath)
self.connection.isolation_level = None # 自動コミット
self.cursor = self.connection.cursor()
sql = 'CREATE TABLE IF NOT EXISTS touchlog(person_name TEXT NOT NULL, idm_number TEXT NOT NULL, detect_time REAL NOT NULL primary key, state TEXT NOT NULL)'
self.cursor.execute(sql)
# コミット
self.connection.commit()
def touchlog(self, person_name, idm_number, detect_time, state):
connection=self.connection
cursor=self.cursor
# データベースにidm_numberがあるかどうか検索
sql = 'INSERT INTO touchlog (person_name, idm_number, detect_time, state) VALUES (?,?,?,?)'
datas = (person_name, idm_number, detect_time, state,) #タプル型で渡す
connection.execute(sql, datas)
connection.commit()
def delete_data(self):
connection=self.connection
cursor=self.cursor
ytime = time.time() - 7776000
# データベースの古いデータを削除(3ヶ月前のデータ)
sql = "delete from touchlog where ? <= detect_time AND detect_time <= ?"
datas = (0, ytime,) #タプル型で渡す
connection.execute(sql, datas)
connection.commit()
# 名前とIDを保存するデータベースを操作する
class Databese_Namelist():
def __init__(self):
self.dbpath = '/home/pi/nfcname.db'
self.connection = sqlite3.connect(self.dbpath)
self.connection.isolation_level = None # 自動コミット
self.cursor = self.connection.cursor()
sql = 'CREATE TABLE IF NOT EXISTS namelist(person_name TEXT NOT NULL, idm_number TEXT NOT NULL primary key, detect_time TEXT NOT NULL)'
self.cursor.execute(sql)
# コミット
self.connection.commit()
# データベース内で検索
def idm_serch(self,idm_number):
connection=self.connection
cursor=self.cursor
# データベースにidm_numberがあるかどうか検索
sql = "select * from namelist where idm_number = ?"
datas = (idm_number,) #タプル型で渡す
result = connection.execute(sql, datas).fetchone()
connection.commit()
return result
# データベースに追加
def insert(self,person_name, idm_number, detect_time):
connection=self.connection
cursor=self.cursor
sql = 'INSERT INTO namelist (person_name, idm_number, detect_time) VALUES (?,?,?)'
datas = (person_name, idm_number, detect_time,)
connection.execute(sql, datas)
connection.commit()
# データベースの内容を更新
def update(self,person_name, idm_number, detect_time):
connection=self.connection
cursor=self.cursor
sql = "UPDATE namelist SET person_name = ?, detect_time = ? WHERE idm_number = ?"
datas = (person_name, detect_time, idm_number,)
connection.execute(sql, datas)
connection.commit()
#print(datas)
# データベースの内容の一部を削除
def delete(self,idm_number):
connection=self.connection
cursor=self.cursor
sql = "delete from namelist where idm_number = ?"
datas = (idm_number,)
connection.execute(sql, datas)
connection.commit()
# データベースの内容をすべて表示
def show(self):
connection=self.connection
cursor=self.cursor
sql = "SELECT * FROM namelist"
### *は全カラムを意味.namelistはテーブル名
### レコード毎の全カラムの値を含むタプルのリストとして抽出される
datas = connection.execute(sql).fetchall()
connection.commit()
return datas
# サーボ関係
class ServoCon:
def control_key(dc):
servo = GPIO.PWM(SERVO_GPIO, SERVO_PWM)
servo.start(0.0)
servo.ChangeDutyCycle(dc)
time.sleep(0.3) #モータが動き終わるまで待ち
servo.stop()
def open_key():
global status
ServoCon.control_key(SERVO_OPEN)
time.sleep(0.5)
ServoCon.control_key(SERVO_wait)
time.sleep(0.5)
status = "open"
return status
servo.stop()
def close_key():
global status
ServoCon.control_key(SERVO_CLOSE)
time.sleep(0.5)
ServoCon.control_key(SERVO_wait)
time.sleep(0.5)
status = "close"
return status
servo.stop()
def get_status():
global status
return status
servo.stop()
# メイン
def nfcservo():
global gpio_button
while True:
print("*****************************************")
print ('NFC waiting...')
idm = nfc_imput()
# 特定のIDmだった場合のアクション
# データベースにidm_numberがあるかどうか検索
serchresult = databese_namelist.idm_serch(str(idm))
# スイッチが押されてたら
if gpio_button =="0":
database_change()
gpio_button = "1" # 押されていない状態に戻す
continue
# idmがデータベースになかったら
elif serchresult == None:
print(str(idm) + "は登録されていません")
# logを記録する
database_touchlog.touchlog("No registration", str(idm), time.time(), status)
time.sleep(1)
# idmがデータベースにあったら
elif serchresult[1] == str(idm):
print("【 " + serchresult[0] + "の登録済みid : " + serchresult[1] + "】")
# 現在の状態を記録
before_status = ServoCon.get_status()
if before_status == "open":
ServoCon.close_key()
elif before_status == "close":
ServoCon.open_key()
state = str(before_status) + " >>>>> " + str(ServoCon.get_status())
print("status : " + state)
# logを記録する
database_touchlog.touchlog(serchresult[0], serchresult[1], time.time(), state)
else:
print("errer")
if __name__ == '__main__':
try:
# 最初にオープン状態にする
ServoCon.control_key(SERVO_OPEN)
status = "open"
databese_namelist = Databese_Namelist()
database_touchlog = Databese_Touchlog()
# 起動を記録する
database_touchlog.touchlog("start program", "No number", time.time(), status)
database_touchlog.delete_data() # 古い記録を削除
nfcservo()
except KeyboardInterrupt:
GPIO.cleanup()
pass