mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
13 lines
320 B
Python
13 lines
320 B
Python
'''
|
|
Firmware update examples
|
|
Note: copy the WINC1500/firmware folder to uSD
|
|
'''
|
|
import time, network
|
|
|
|
# Init wlan module in Download mode
|
|
wlan = network.WINC(True)
|
|
#print("Firmware version:", wlan.fw_version())
|
|
|
|
# Start the firmware update process.
|
|
wlan.fw_update()
|
|
#print("Firmware version:", wlan.fw_version()) |