fixed test_voice for python3
This commit is contained in:
parent
ae292f1d84
commit
abb76d7ac4
@ -16,28 +16,28 @@ parser.add_argument('-T', '--timeout', type=int,
|
|||||||
help='timeout [60]', default=60)
|
help='timeout [60]', default=60)
|
||||||
parser.add_argument('-P', '--password', type=int,
|
parser.add_argument('-P', '--password', type=int,
|
||||||
help='Device code/password', default=0)
|
help='Device code/password', default=0)
|
||||||
parser.add_argument('-f', '--firmware', type=int,
|
parser.add_argument('-f', '--force-udp', action="store_true",
|
||||||
help='test firmware', default=8)
|
help='Force UDP communication')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
conn = None
|
conn = None
|
||||||
zk = ZK(args.address, port=args.port, timeout=args.timeout, password=args.password, firmware=args.firmware)
|
zk = ZK(args.address, port=args.port, timeout=args.timeout, password=args.password, force_udp=args.force_udp)
|
||||||
try:
|
try:
|
||||||
print 'Connecting to device ...'
|
print ('Connecting to device ...')
|
||||||
conn = zk.connect()
|
conn = zk.connect()
|
||||||
print 'Disabling device ...'
|
print ('Disabling device ...')
|
||||||
conn.disable_device()
|
conn.disable_device()
|
||||||
print 'Firmware Version: : {}'.format(conn.get_firmware_version())
|
print ('Firmware Version: : {}'.format(conn.get_firmware_version()))
|
||||||
for i in range(0,65):
|
for i in range(0,65):
|
||||||
print "test_voice, %i" % i
|
print ("test_voice, %i" % i)
|
||||||
zk.test_voice(i)
|
zk.test_voice(i)
|
||||||
sleep(3)
|
sleep(3)
|
||||||
print 'Enabling device ...'
|
print ('Enabling device ...')
|
||||||
conn.enable_device()
|
conn.enable_device()
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
print "Process terminate : {}".format(e)
|
print ("Process terminate : {}".format(e))
|
||||||
finally:
|
finally:
|
||||||
if conn:
|
if conn:
|
||||||
conn.disconnect()
|
conn.disconnect()
|
||||||
|
@ -663,10 +663,10 @@ class ZK(object):
|
|||||||
7 memoria de alm fich llena /-
|
7 memoria de alm fich llena /-
|
||||||
8 huella duplicada / huella duplicada
|
8 huella duplicada / huella duplicada
|
||||||
9 acceso denegado / ya ha sido registrado
|
9 acceso denegado / ya ha sido registrado
|
||||||
10 *beep* / beep
|
10 *beep* / beep kuko
|
||||||
11 el sistema vuelve al modo de verificacion / beep
|
11 el sistema vuelve al modo de verificacion / beep siren
|
||||||
12 por favor coloque su dedo o acerque tarjeta /-
|
12 por favor coloque su dedo o acerque tarjeta /-
|
||||||
13 acerca su tarjeta de nuevo /beep
|
13 acerca su tarjeta de nuevo /beep bell
|
||||||
14 excedido tiempo p esta operacion /-
|
14 excedido tiempo p esta operacion /-
|
||||||
15 coloque su dedo de nuevo /-
|
15 coloque su dedo de nuevo /-
|
||||||
16 coloque su dedo por ultima vez /-
|
16 coloque su dedo por ultima vez /-
|
||||||
|
Loading…
Reference in New Issue
Block a user