Set Wifi info
1
2'''
3System - Set_Wifi_info.py.
4
5For other examples please check:
6 https://github.com/WPC-Systems-Ltd/WPC_Stand-alone_Python_release/tree/main/examples
7
8Copyright (c) 2025 WPC Systems Ltd.
9All rights reserved.
10'''
11
12## WPC
13import pywpc
14
15## Set IP
16pywpc.Sys_setWifiSSID("your_SSID_name")
17pywpc.Sys_setWifiPassword("your_password")
18
19## Reboot PYCO
20pywpc.Sys_reboot()
21