Modify user fingerprint enrollment
This commit is contained in:
parent
9cdf123a63
commit
1d88a5cf14
10
zk/base.py
10
zk/base.py
@ -417,15 +417,19 @@ class ZK(object):
|
|||||||
cmd_response = self.__send_command(command=command)
|
cmd_response = self.__send_command(command=command)
|
||||||
print cmd_response
|
print cmd_response
|
||||||
|
|
||||||
def enroll_user(self, uid):
|
def enroll_user(self, uid=''):
|
||||||
'''
|
'''
|
||||||
start enroll user
|
start enroll user
|
||||||
'''
|
'''
|
||||||
|
|
||||||
command = const.CMD_STARTENROLL
|
command = const.CMD_STARTENROLL
|
||||||
uid = chr(uid % 256) + chr(uid >> 8)
|
|
||||||
command_string = pack('2s', uid)
|
command_string = pack('2s', uid)
|
||||||
cmd_response = self.__send_command(command=command, command_string=command_string)
|
|
||||||
|
checksum = 0
|
||||||
|
session_id = self.__sesion_id
|
||||||
|
reply_id = self.__reply_id
|
||||||
|
response_size = 8
|
||||||
|
cmd_response = self.__send_command(command, command_string, checksum, session_id, reply_id, response_size)
|
||||||
print cmd_response
|
print cmd_response
|
||||||
|
|
||||||
def clear_data(self):
|
def clear_data(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user