pyztk/example/poweroff_device.py

23 lines
427 B
Python
Raw Permalink Normal View History

2019-04-25 16:40:15 +07:00
# -*- coding: utf-8 -*-
import os
import sys
CWD = os.path.dirname(os.path.realpath(__file__))
ROOT_DIR = os.path.dirname(CWD)
sys.path.append(ROOT_DIR)
2019-04-25 20:29:10 +07:00
from zk import ZK
2019-04-25 16:40:15 +07:00
conn = None
zk = ZK('192.168.2.201', port=4370)
try:
conn = zk.connect()
print ("Shutdown the device...")
conn.poweroff()
except Exception as e:
print ("Process terminate : {}".format(e))
finally:
if conn:
conn.disconnect()