16 lines
352 B
Python
16 lines
352 B
Python
"""
|
|
License: Apache 2.0. See LICENSE file in root directory.
|
|
Copyright(c) 2020-2021 Intel Corporation. All Rights Reserved.
|
|
"""
|
|
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)
|
|
|
|
|