Set device alias

 1'''
 2System_ETH - set_device_alias.py with synchronous mode.
 3
 4This example demonstrates how to set device alias from EDriveST.
 5
 6-------------------------------------------------------------------------------------
 7Please change correct serial number or IP and port number BEFORE you run example code.
 8
 9For other examples please check:
10    https://github.com/WPC-Systems-Ltd/WPC_Python_driver_release/tree/main/examples
11See README.md file to get detailed usage of this example.
12
13Copyright (c) 2022-2024 WPC Systems Ltd. All rights reserved.
14'''
15
16## Python
17import time
18
19## WPC
20
21from wpcsys import pywpc
22
23def main():
24    ## Get Python driver version
25    print(f'{pywpc.PKG_FULL_NAME} - Version {pywpc.__version__}')
26
27    ## Create device handle
28    dev = pywpc.EDriveST()
29
30    ## Connect to device
31    try:
32        dev.connect("192.168.1.110") ## Depend on your device
33    except Exception as err:
34        pywpc.printGenericError(err)
35        ## Release device handle
36        dev.close()
37        return
38
39    try:
40        ## Parameters setting
41        alias_name = "WPC_1234"
42        timeout = 3 ## second
43
44        ## Get firmware model & version
45        driver_info = dev.Sys_getDriverInfo(timeout)
46        print("Model name: " + driver_info[0])
47        print("Firmware version: " + driver_info[-1])
48
49        ## Set device alias
50        err = dev.Sys_setDeviceAlias(alias_name, timeout)
51        print(f"Sys_setDeviceAlias, status: {err}")
52    except Exception as err:
53        pywpc.printGenericError(err)
54
55    ## Disconnect network device
56    dev.disconnect()
57
58    ## Release device handle
59    dev.close()
60
61    return
62
63if __name__ == '__main__':
64    main()