trying to add a new thing to my cloud account but keep getting this error.
ArduinoIoTCloudTCP::handle_WaitDeviceConfig device waiting for valid thing_id
sketch generated by Arduino cloud, did not change anything but WiFi settings and SECRET_DEVICE_KEY
#include "arduino_secrets.h"
/*
Sketch generated by the Arduino IoT Cloud Thing "Untitled"
https://create.arduino.cc/cloud/things/725ff862-1659-45c4-b33f-ea5a085d0212
Arduino IoT Cloud Variables description
The following variables are automatically generated and updated when changes are made to the Thing
int testje_hans;
Variables which are marked as READ/WRITE in the Cloud Thing will also have functions
which are called when their values are changed from the Dashboard.
These functions are generated with the Thing and added at the end of this sketch.
*/
#include "thingProperties.h"
void setup() {
// Initialize serial and wait for port to open:
Serial.begin(115200);
// This delay gives the chance to wait for a Serial Monitor without blocking if none is found
delay(1500);
// Defined in thingProperties.h
initProperties();
// Connect to Arduino IoT Cloud
ArduinoCloud.begin(ArduinoIoTPreferredConnection);
/*
The following function allows you to obtain more information
related to the state of network and IoT Cloud connection and errors
the higher number the more granular information you’ll get.
The default is 0 (only errors).
Maximum is 4
*/
setDebugMessageLevel(2);
ArduinoCloud.printDebugInfo();
}
void loop() {
ArduinoCloud.update();
// Your code here
}
/*
Since TestjeHans is READ_WRITE variable, onTestjeHansChange() is
executed every time a new value is received from IoT Cloud.
*/
void onTestjeHansChange() {
// Add your code here to act upon TestjeHans change
}
log
11:50:17.372 -> ***** Arduino IoT Cloud - configuration info *****
11:50:17.372 -> Device ID: 7150e712-314e-4cbe-bd0d-ada98ff65fdb
11:50:17.410 -> MQTT Broker: mqtts-up.iot.arduino.cc:8884
11:50:17.410 -> WiFi.status(): 255
11:50:21.451 -> Connection to "KELDER" failed
11:50:21.451 -> Retrying in "4000" milliseconds
11:50:25.404 -> Connection to "KELDER" failed
11:50:25.404 -> Retrying in "4000" milliseconds
11:50:29.398 -> Connected to "KELDER"
11:50:36.517 -> ArduinoIoTCloudTCP::handle_WaitDeviceConfig device waiting for valid thing_id
11:50:46.849 -> ArduinoIoTCloudTCP::handle_WaitDeviceConfig device waiting for valid thing_id
11:51:07.233 -> ArduinoIoTCloudTCP::handle_WaitDeviceConfig device waiting for valid thing_id
Any help would be appreciated