-
Notifications
You must be signed in to change notification settings - Fork 82
Adding self provisioning example #187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding self provisioning example #187
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @luigigubello 👋 Good work! However, when testing it on MKR WiFi 1010 and PROD I was unable to connect to the server ...
if (client.connect(server, 443)) {
/* ... */
fails which manifests itself in a endless loop of
No client
No client
No client
. Also please add this file to the CI build @per1234 can help if you've got any questions.
|
||
#include "arduino_secrets.h" | ||
#include "ECCX08TLSConfig.h" | ||
#include <ArduinoBearSSL.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ArduinoBearSSL
has been integrated into ArduinoIoTCloud:master:head
so there is no need to include this here, sketch compiles fine without it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ArduinoBearSSL has been integrated into ArduinoIoTCloud:master:head so there is no need to include this here, sketch compiles fine without it.
👍 💯
when testing it on MKR WiFi 1010 and PROD I was unable to connect to the server
Are you using Arduino IoT Cloud 0.10 and NINA-fw 1.3.0? Can you change delay(5000);
in delay(10000);
and try again? Thank you! It works for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please first add this to CI build, that alone usually catches all kinds of problems.
…duinoIoTCloud into selfprovisioning_example
Memory usage change @ 06ea138
Click for full report table
Click for full report CSV
|
Adding a new example for provisioning the boards MKR WiFi 1010 and Nano 33 IoT to Arduino IoT Cloud using Arduino Cloud API.