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();
}