bp_skripty/list_users.py
2023-05-28 21:12:05 +02:00

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)