Arduino Nano 33 IoT - How to connect?

Hey guys…
Blynk! It looks so nice! Yet I am lost on how to use it… I have looked at several different tutorials and none of them have helped much… I have a Arduino Nano 33 IoT (not BLE)… and I cannot connect to the IOS app… when I make a project, upload this code, and click the play button in the upper right corner of the app… all it says is “New Project is offline” or “New Project Wasn’t online yet”
When I select my device it has no Arduino Nano 33 IoT to select, I have read that I need to select MKR1010 to pair the Nano 33 IoT, but when setting up a new device it only lets me select the MKR1000… I am 100% lost… please help…

Here is the code I have uploaded to my Nano 33 IoT (not BLE)


#define BLYNK_PRINT SerialUSB
#include <SPI.h>
#include <WiFi101.h>

#include <BlynkSimpleWiFiShield101.h>

char auth[] = "4lph-a78wQ0dkNphFkwidHRCPNLOkU_5";
char ssid[] = "soylentG";
char pass[] = "4damian4";

void setup(){
    SerialUSB.begin(9600);
    Blynk.begin(auth, ssid, pass);
}
void loop(){
    Blynk.run();
}

What does your serial monitor show?

Pete.

Hello Pete,
Thank you for talking the time to respond…
The serial monitor does not show anything… it just stays blank.

In that case, this is the problem you need to be trying to resolve.
Does your sketch upload correctly?

Pete.

Yes

Do you get an error here? Perhaps it does not connect.

use the WiFiNINA library for Nano 33 IoT.
WiFi101 is for other hardware

So Blynk does not work for the Nano?

use the Arduino_MKR1010 example

You can also try this example SAMD_WiFiNINA_WM, written for Nano-33-IoT, of Blynk_WiFiNINA_WM Library.