RP2040 Pico W WiFi problems when using platformIO. #2921
-
I've configured a platformio project as specified in the current documentation under "PlatformIO integration". I cannot get the WiFI library to work using code that works fine in the Arduino IDE. I've tried various combinations with no success. Here's my platformio.ini.
Here's the snippet of code used to configure the WiFI. ` if (WiFi.status() == WL_NO_SHIELD) { while(wiFiMulti.run() != WL_CONNECTED){ Running this using the Arduino IDE 2.3.5 connects successfully, but the same code in a PIO project as above compiles, loads but fails to connect. Am I missing something? I'm happy to supply sample projects that work under the Arduino IDE but not PIO and file an issue if this is a bug. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You're not specifying the PicoW board, just a generic RP2040 one. Try |
Beta Was this translation helpful? Give feedback.
You're not specifying the PicoW board, just a generic RP2040 one. Try
board = picow
orboard = rpipicow