Brief Set Up guide: https://pico.me365.xyz/steps
-
Use Latest .uf2 and override on top!
-
Download IDE to access Pico, e.g. Thonny IDE
-
Connect to your Pico W
-
Add
src
files to your Pico W, this handles each received command -
Make some changes to handle new things e.g. create blink handle in handleCommands:
def handleCommands(item, value):
if "blink" == item: blink_onboard_led(int(value))
...
-
Rerun
main.py
after changes
- Create new Controller for
your new commands
, e.g. use commandblink=5
and offCommandled=0
- Update your device by enabling created command
- Click on Control in Devices Control to emit new control command