-
Notifications
You must be signed in to change notification settings - Fork 0
/
ignore_manexware_attendance.py
331 lines (259 loc) · 10.1 KB
/
ignore_manexware_attendance.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Importamos los modulos Requeridos
from pyfingerprint import PyFingerprint
import RPi.GPIO as GPIO
import time
import lcddriver
import datetime
import pymysql
#Definimos la conexion a la base de datos
db = pymysql.connect(
host="localhost",
database="biometrico",
user="administrador",
password="manex"
)
mysqlcursor = db.cursor()
#Llamamos al lcd
lcd=lcddriver.lcd()
lcdprint=lcd.lcd_display_string
button_1=16 #Definiendo los pines para los botones
button_2=12 #Definiendo los pines para los botones
ledrojo=15 #Definiendo los pines para los leds
ledverde=13 #Definiendo los pines para los leds
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(ledverde,GPIO.OUT)
GPIO.setup(ledrojo, GPIO.OUT)
GPIO.setup(button_1, GPIO.IN)
GPIO.setup(button_2, GPIO.IN)
GPIO.output(ledrojo,GPIO.LOW)
GPIO.output(ledverde,GPIO.LOW)
lcd.lcd_clear()
GPIO.output(ledverde, GPIO.HIGH)
def menu_bio():
while True:
lcdprint('Asistencia ITSG', 1)
lcdprint(str(datetime.datetime.now()), 2)
print("""
1.Registrar
2.Asistencia
3.Buscar
4.Eliminar
5.Salir
""")
op= input("Ingrese:")#GPIO.input(button_1)#True-Presionado False-Si No Presiona
while True:
if op=="1":#True
GPIO.output(ledverde,GPIO.LOW)
lcd.lcd_clear()
register()
break
elif op=="2":#True
GPIO.output(ledverde,GPIO.LOW)
lcd.lcd_clear()
delete()
break
else:
print("error")
"""registrara los datos de la huella y e informacion adicional
Que sera añadida a la base de datos en la tabla , empleados"""
def register():
try:
f = PyFingerprint('/dev/ttyUSB0', 57600, 0xFFFFFFFF, 0x00000000)
if (f.verifyPassword() == False):
raise ValueError('La Contraseña del sensor de huellas dactilares dada es incorrecta!')
except Exception as e:
print('No se puedo inicializar el sensor de huellas dactilares!')
print('Mensaje de exepcion: ' + str(e))
exit(1)
## Gets some sensor information
print('\tEdu Attendance v1.0')
print('')
print('Plantillas utilizada actualmente: ' + str(f.getTemplateCount()) + '/' + str(f.getStorageCapacity()))
print('')
print("Registrar un Nuevo Usuario")
new_name = input("Nombre: ")
result = finger()
sql = """INSERT INTO empleado ( nombre,id_huella,dato) VALUES ('%s','%s','%s')""" %(new_name,result[0],result[1])
mysqlcursor.execute(sql)
db.commit()
db.rollback()
print("Completado")
lcd.lcd_display_string('Completado',1)
db.close()
"""registrara la asistencia mediante la huella ,
Que sera añadida a la base de datos en la tabla , asistencia"""
def attendance():
print('\tEdu Attendance v1.0')
print('')
lcdprint('Esperando su Huella..',2)
print("Esperando su Huella...")
try:
f = PyFingerprint('/dev/ttyUSB0', 57600, 0xFFFFFFFF, 0x00000000)
if (f.verifyPassword() == False):
raise ValueError('La Contraseña del sensor de huellas dactilares dada es incorrecta!')
except Exception as e:
print('No se puedo inicializar el sensor de huellas dactilares!')
print('Mensaje de exepcion: ' + str(e))
exit(1)
while True:
try:
## Wait that finger is read
prnt = f.readImage()
if (prnt != False):
## Converts read image to characteristics and stores it in charbuffer 1
f.convertImage(0x01)
result = f.searchTemplate()
positionNumber = f.storeTemplate()
f.loadTemplate(positionNumber, 0x01)
positionNumber = result[0]
mysqlcursor.execute("Select nombre FROM empleado WHERE id_huella = ('%i')" % (positionNumber))
nombre = mysqlcursor.fetchone()
sname = nombre[0]
print("Bienvenido " + sname)
while True:
menuIS()
op=input("Ingrese una Opcion")
if op=="1":
new_status='Ingreso'
new_fecha=datetime.datetime.now()
sql="""INSERT INTO asistencia(id_empleado,estado,fecha) VALUES
((SELECT id_empleado FROM empleado WHERE id_bio='%i'),'%s','%s')""" % (positionNumber,new_status,new_fecha)
mysqlcursor.execute(sql)
db.commit()
db.rollback()
print("Completado!")
db.close()
break
elif op=="2":
new_status='Salida'
new_fecha=datetime.datetime.now()
sql = """INSERT INTO asistencia(id_docente,estado,fecha) VALUES
((SELECT id_docente FROM docente WHERE id_bio='%i'),'%s','%s')""" % (
positionNumber, new_status, new_fecha)
mysqlcursor.execute(sql)
db.commit()
db.rollback()
print("Completado!")
db.close()
break
else:
print("Ingrese una Opcion Correcta")
break
break
except Exception as e:
print('No se Encontraron Coincidencias')
print('Scanea de Nuevo!')
time.sleep(2)
def search():
# Search for a finger
print('\tEdu Attendance v1.0')
print("")
print("Esperando su Huella...")
try:
f = PyFingerprint('/dev/ttyUSB0', 57600, 0xFFFFFFFF, 0x00000000)
if (f.verifyPassword() == False):
raise ValueError('La Contraseña del sensor de huellas dactilares dada es incorrecta!')
except Exception as e:
print('No se puedo inicializar el sensor de huellas dactilares!')
print('Mensaje de exepcion: ' + str(e))
exit(1)
while True:
try:
# Wait that finger is read
prnt = f.readImage()
if (prnt != False):
# Converts read image to characteristics and stores it in charbuffer 1
f.convertImage(0x01)
## Searchs template
result = f.searchTemplate()
positionNumber = result[0]
f.loadTemplate(positionNumber, 0x01)
mysqlcursor.execute("Select nombre FROM docente WHERE id_bio = ('%i')" % (positionNumber))
nombre = mysqlcursor.fetchone()
sname = nombre[0]
print("Bienvenido " + sname)
break
except Exception as e:
print('No se Encontraron Coincidencias')
print('Scanea de Nuevo!')
time.sleep(2)
def delete():
try:
f = PyFingerprint('/dev/ttyUSB0', 57600, 0xFFFFFFFF, 0x00000000)
if (f.verifyPassword() == False):
raise ValueError('La Contraseña del sensor de huellas dactilares dada es incorrecta!')
except Exception as e:
print('No se puedo inicializar el sensor de huellas dactilares!')
print('Mensaje de exepcion: ' + str(e))
exit(1)
## Gets some sensor information
print('\tEdu Attendance v1.0')
print('')
print('Plantillas utilizada actualmente: ' + str(f.getTemplateCount()) + '/' + str(f.getStorageCapacity()))
print('')
try:
if f.clearDatabase()==True:
print('Plantillas actualmente: ' + str(f.getTemplateCount()) + '/' + str(f.getStorageCapacity()))
except Exception as e:
print('Operacion fallida')
print('Mensaje de exepcion: ' + str(e))
exit(1)
def finger():
try:
f = PyFingerprint('/dev/ttyUSB0', 57600, 0xFFFFFFFF, 0x00000000)
if (f.verifyPassword() == False):
raise ValueError('La Contraseña del sensor de huellas dactilares dada es incorrecta!')
except Exception as e:
print('No se puedo inicializar el sensor de huellas dactilares!')
print('Mensaje de exepcion: ' + str(e))
exit(1)
## Tries to enroll new finger
while True:
try:
print('Waiting for finger...')
## Wait that finger is read
while (f.readImage() == False):
pass
## Converts read image to characteristics and stores it in charbuffer 1
f.convertImage(0x01)
## Checks if finger is already enrolled
result = f.searchTemplate()
positionNumber = result[0]
if (positionNumber >= 0):
print('Template already exists at position #' + str(positionNumber))
exit(0)
time.sleep(2)
print('Waiting for same finger again...')
## Wait that finger is read again
while (f.readImage() == False):
pass
## Converts read image to characteristics and stores it in charbuffer 2
f.convertImage(0x02)
## Compares the charbuffers
if (f.compareCharacteristics() == 0):
raise Exception('Fingers do not match')
print('Fingers do not match',str(positionNumber))
## Creates a template
f.createTemplate()
## Saves template at new position number
positionNumber = f.storeTemplate()
f.loadTemplate(positionNumber, 0x01)
char_store = str(f.downloadCharacteristics(0x01))
char_store1 = char_store.translate("")
var = ''
for x in char_store1:
var += x
return positionNumber,var
break
except Exception as e:
print('Error')
print('Scanea de Nuevo!')
time.sleep(2)
if __name__ == '__main__':
try:
menu_bio()
except KeyboardInterrupt:
pass