forked from QuickCorp/pyGT511C3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
raspberry_pi_GPIO_test.py
executable file
·54 lines (40 loc) · 1.41 KB
/
raspberry_pi_GPIO_test.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
'''
Created on 08/04/2014
@author: jeanmachuca
SAMPLE CODE:
This script is a test for device connected to GPIO port in raspberry pi
For test purpose:
Step 1:
Connect the TX pin of the fingerprint GT511C3 to RX in the GPIO
Step 2:
Connect the RX pin of the fingerprint GT511C3 to TX in the GPIO
Step 3:
Connect the VCC pin of the fingerprint GTC511C3 to VCC 3,3 in GPIO
Step 4:
Connect the Ground pin of fingerprint GT511C3 to ground pin in GPIO
This may be works fine, if don't, try to change the fingerprint baud rate with baud_to_115200.py sample code
'''
import FPS, sys
DEVICE_GPIO = '/dev/ttyAMA0'
DEVICE_LINUX = '/dev/cu.usbserial-A601EQ14'
DEVICE_MAC = '/dev/cu.usbserial-A601EQ14'
DEVICE_WINDOWS = 'COM3'
FPS.BAUD = 115200
FPS.DEVICE_NAME = DEVICE_MAC
if __name__ == '__main__':
fps = FPS.FPS_GT511C3(device_name=DEVICE_MAC,baud=115200,timeout=2,is_com=False)
fps.UseSerialDebug = True
fps.SetLED(True) # Turns ON the CMOS LED
FPS.delay(1) # wait 1 second
print 'Put your finger in the scan'
counter = 0 # simple counter for wait 10 seconds
while counter < 10:
if fps.IsPressFinger(): #verify if the finger is in the scan
print 'Your finger is in the scan'
fps.SetLED(False) # Turns OFF the CMOS LED
break
else:
FPS.delay(1) #wait 1 second
counter = counter + 1
fps.Close() # Closes serial connection
pass