Raspberry Pi Pico W in platformIO

hi,

is there anyone that has experience programming a Pico W in the platformio IDE? i can get code on the board by using the normal pico but can’t access the LED or WIFI module. any tips and tricks are welcome!

Thomas

As described in PR#36 this works. As the developer I personally tested this on a Pico W using the platformio.ini

[env]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
framework = arduino
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m

[env:rpipicow]
board = rpipicow

with the e.g. ScanNetworks.ino code as src/main.cpp, verbatim.

Good job!
After a massive download, and a filesystem full, the ScanNetworks code worked perfectly.
I’m reading PR thread.
I hope it will be added to core PlatformIO.