Problem
The README instructs users to enter BOOTSEL mode, copy the .py files, then copy the UF2 file. BOOTSEL storage is the UF2 flashing volume, not the MicroPython filesystem used for application modules.
The instructions also omit both JSON files. params.json is mandatory; if it is absent, main.py exits before initializing the display. Following the documented procedure therefore cannot produce a working installation.
Relevant locations
README.md, Setupmain.py, file_in(PARAMS_FILE) and early exitparams.jsonuser.json
Acceptance criteria
Problem
The README instructs users to enter BOOTSEL mode, copy the
.pyfiles, then copy the UF2 file. BOOTSEL storage is the UF2 flashing volume, not the MicroPython filesystem used for application modules.The instructions also omit both JSON files.
params.jsonis mandatory; if it is absent,main.pyexits before initializing the display. Following the documented procedure therefore cannot produce a working installation.Relevant locations
README.md, Setupmain.py,file_in(PARAMS_FILE)and early exitparams.jsonuser.jsonAcceptance criteria
mpremote, or another explicit MicroPython file-transfer tool.params.jsonand the intended handling ofuser.json.main.pyon the device.