How to upgrade Pycom firmware on my CC1 device

To update the Pycom firmware there are two ways:
First option:
If you have a Dataview already on the device you can go to the settings(gear icon).
Navigate right trough two pages, using the forward button.
Make sure the ‘kiosk’ wifi is accessible.
On the last settings page you will see a field (FOTA) press it. Device will update and restart.
Second option:
Connect to the Wifi AP (infrafon-xxxx), establish a telnet connection (telnet 192.168.4.1).
user: ‘micro’
pw:‘python’
Check the wifi connection settings:

import pycom;pycom.wifi_ssid_sta();pycom.wifi_pwd_sta();pycom.wifi_ssid_ap();pycom.wifi_pwd_ap()

Output should be:

‘kiosk’
‘infrafon-2022’
‘infrafon’
‘’

Do the Pycom OTA update:

import pycom;pycom.bootmgr(boot_partition=0, reset=True)