-
Hi, I tried the following example: with the esp32 board it works fine, but with the arduino OPTA board I have the following Serial monitor:
thanks to whoever will help me |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Nothing is related to the library. It is the server certificate issue which it needs for server verification in OPTA. You have to know that all Arduino device's firmware requires the server certificates for secure server connection. The Go to You should try it yourself. I'm not responsible for the device firmware update. If you have the issue about server certificate and firmware update, please contact Arduino support team. |
Beta Was this translation helpful? Give feedback.
Nothing is related to the library. It is the server certificate issue which it needs for server verification in OPTA.
You have to know that all Arduino device's firmware requires the server certificates for secure server connection.
You can update/add Google (Firebase) server root CA certificate in
certificates.h
before updating the firmware by follow this instruction.https://github.com/arduino/ArduinoCore-mbed/tree/main/libraries/STM32H747_System/examples/WiFiFirmwareUpdater
The
WiFiFirmwareUpdater
sketch to update firmware is available from the Arduino IDE.Go to
File -> Examples -> STM32H747_System -> WiFiFirmwareUpdater
You should try it yourself.
I'm not responsible for the device…