12 lines
224 B
Python
12 lines
224 B
Python
import rsid_py
|
|
|
|
PORT='/dev/ttyACM0'
|
|
|
|
if __name__ == '__main__':
|
|
with rsid_py.FaceAuthenticator(PORT) as f:
|
|
#display list of enrolled users
|
|
users = f.query_user_ids()
|
|
print('Users: ', users)
|
|
|
|
|