Anyone had any succes using the Arduino IoT 33?

I followed the step by step tutorial on the thinger documentation page about connecting the Arduino IoT 33 for several times now without any success. Also tried adjusting the code quite some time since several topics were suggesting that. Most of the times, the uploading is not possible because of problems in the code (which was copied from the documentation page). And when modifiying it, the monitor does not show status updates and no connection is made to the cloud.

Hope some of you can help me with this…

Sincerely,

Guus

Hi @Guus_Van_Wezel,

please, update the library from the GitHub master (I have updated it right now). Then, compile an example like the following:

#include <ThingerWiFiNINA.h>

#define USERNAME "your_user_name"
#define DEVICE_ID "your_device_id"
#define DEVICE_CREDENTIAL "your_device_credential"

#define SSID "your_wifi_ssid"
#define SSID_PASSWORD "your_wifi_ssid_password"

ThingerWiFiNINA thing(USERNAME, DEVICE_ID, DEVICE_CREDENTIAL);

void setup() {
  // configure wifi network
  thing.add_wifi(SSID, SSID_PASSWORD);

  pinMode(LED_BUILTIN, OUTPUT);

  // pin control example (i.e. turning on/off a light, a relay, etc)
  thing["led"] << digitalPin(LED_BUILTIN);

  // resource output example (i.e. reading a sensor value, a variable, etc)
  thing["millis"] >> outputValue(millis());

  // more details at http://docs.thinger.io/arduino/
}

void loop() {
  thing.handle();
}

Hope it helps!

that’s great thanks!

@Guus_Van_Wezel, please, let us know if it works for you! :smiley:

Thanks!