1'''
2System_Wifi - set_and_get_RTC.py with asynchronous mode.
3
4This example demonstrates how to set and get RTC from WifiDAQE3AH.
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 asyncio
18
19## WPC
20
21from wpcsys import pywpc
22
23async def main():
24 ## Get Python driver version
25 print(f'{pywpc.PKG_FULL_NAME} - Version {pywpc.__version__}')
26
27 ## Create device handle
28 dev = pywpc.WifiDAQE3AH()
29
30 ## Connect to device
31 try:
32 dev.connect("192.168.5.38") ## 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 ## Get firmware model & version
41 driver_info = await dev.Sys_getDriverInfo_async()
42 print("Model name: " + driver_info[0])
43 print("Firmware version: " + driver_info[-1])
44
45 ## Set RTC
46 err = await dev.Sys_setRTC_async(2023, 5, 8, 15, 8, 7)
47 print(f"Set RTC to 2023-05-08, 15:08:07 , status: {err}")
48
49 ## Get RTC
50 for i in range(10):
51 print(f"Get RTC: {await dev.Sys_getRTC_async()}")
52 await asyncio.sleep(1) ## delay [s]
53 except Exception as err:
54 pywpc.printGenericError(err)
55
56 ## Disconnect network device
57 dev.disconnect()
58
59 ## Release device handle
60 dev.close()
61
62 return
63
64def main_for_spyder(*args):
65 if asyncio.get_event_loop().is_running():
66 return asyncio.create_task(main(*args)).result()
67 else:
68 return asyncio.run(main(*args))
69
70if __name__ == '__main__':
71 asyncio.run(main()) ## Use terminal
72 # await main() ## Use Jupyter or IPython(>=7.0)
73 # main_for_spyder() ## Use Spyder