1
- from Cards import *
1
+ from cards import *
2
2
3
-
4
- #Handle Card Tap event. This event is raised when a user taps his phone on the reader.
5
- #Note that Cards must be installed on the phone.
3
+
4
+ """Handles Card Tap event.
5
+ This event is raised when a user taps his phone on the reader.
6
+ """
6
7
def card_tap_handler (card_info ):
7
- if not card_info .is_success :
8
- print ('Error reading card, Error: {0}' .format (card_info .error ))
9
- return
10
-
11
- print ('Card read, user id: {0}' .format (card_info .card_details .user_id ))
12
-
13
- '''Your code goes here!
14
- Do whatever you want with the accepted User ID!
15
-
16
- -----------------------
17
- Example: Open the door, if the user is authorized
18
- -----------------------
19
- if YourSystem.IsAuthorizedToOpenDoor(card_info.card_details.user_id, Doors.Hallway):
20
- YourSystem.OpenDoor(Doors.Hallway)
21
-
22
- -----------------------
23
- Example: Remove balance
24
- ----------------------
25
- YourSystem.Users.ChangeBalance(card_info.card_details.user_id, -10);'''
26
-
27
- #Handles reader status change.
8
+ if not card_info .is_success :
9
+ print ('Error reading card, Error: %d' % card_info .error )
10
+ return
11
+
12
+ print ('Card read, user id: %s' % card_info .card_details .user_id )
13
+
14
+ '''
15
+ Your code goes here!
16
+ Do whatever you want with the accepted User ID!
17
+
18
+ -----------------------
19
+ Example: Open the door, if the user is authorized
20
+ -----------------------
21
+ if YourSystem.IsAuthorizedToOpenDoor(card_info.card_details.user_id, Doors.Hallway):
22
+ YourSystem.OpenDoor(Doors.Hallway)
23
+
24
+ -----------------------
25
+ Example: Remove balance
26
+ ----------------------
27
+ YourSystem.Users.ChangeBalance(card_info.card_details.user_id, -10);
28
+ '''
29
+
30
+
31
+ """Handles reader status change."""
28
32
def status_change_handler (status ):
29
- if status is ReaderStatus .Disconnected :
30
- print ('Card reader has been disconnected' )
31
- elif status is ReaderStatus .Connected :
32
- print ('Card reader has been connected' )
33
+ if status is ReaderStatus .Disconnected :
34
+ print ('Card reader has been disconnected' )
35
+ elif status is ReaderStatus .Connected :
36
+ print ('Card reader has been connected' )
37
+ else :
38
+ print ('Error: unknown status change' )
39
+
40
+
41
+ def main ():
42
+ # Initialize the ReaderCredentials and ReaderSettings objects with wanted / needed parameters
43
+ reader_credentials = ReaderCredentials ('ABCD1234ABCD1234ABCD1234' )
44
+ reader_settings = ReaderSettings ('ACS - ACR122U PICC Interface' )
33
45
46
+ # Initialize the CardReader object with ReaderCredentials and ReaderSettings.
47
+ card_reader = CardReader (reader_settings , reader_credentials )
34
48
35
- reader_credentials = ReaderCredentials ('ABCD1234ABCD1234ABCD1234' )
36
- reader_settings = ReaderSettings ('ACS - ACR122U PICC Interface' )
49
+ # Set the on_card_tap and on_status_change events
50
+ card_reader .on_card_tap = card_tap_handler
51
+ card_reader .on_status_change = status_change_handler
37
52
38
- card_reader = CardReader (reader_settings , reader_credentials )
53
+ # Start listening
54
+ card_reader .listen ()
39
55
40
- card_reader .on_card_tap = card_tap_handler
41
- card_reader .on_status_change = status_change_handler
42
56
43
- card_reader .listen ()
57
+ if __name__ == "__main__" :
58
+ main ()
0 commit comments