Q on RASPBERRY_PI_PICO_W

Hi,

I noticed that the RASPBERRY_PI_PICO_W board is not supported as of yet within the Arduino IDE 2.0 (unless I’m missing something). Any plans for the near future?

It’s supported using Micropython though.

TIA

   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ for Python v1.0.0 (rp2)

what problem do you have to make it work with?

this is for a different WiFi library but the idea is to use config instead of begin
include <BlynkSimpleWifi.h>

  if (WiFi.status() == WL_NO_MODULE) {
    Serial.println("Communication with WiFi module failed!");
    // don't continue
    while (true);
  }

  // waiting for connection to Wifi network set with the SetupWiFiConnection sketch
  Serial.println("Waiting for connection to WiFi");
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.print('.');
  }
  Serial.println("You're connected to the network");

  Blynk.config(auth, BLYNK_DEFAULT_DOMAIN, BLYNK_DEFAULT_PORT);
  while(Blynk.connect() != true) {}

It won’t compile bc it’s missing a specific lib (pico). However, I didn’t try using a generic one. Will try it, thanks.