File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 151
151
#define BOARD_STM32H7
152
152
#endif
153
153
154
+ #if defined(ARDUINO_UNOR4_WIFI )
155
+ #define BOARD_HAS_SECRET_KEY
156
+ #define HAS_TCP
157
+ #endif
158
+
154
159
/******************************************************************************
155
160
* CONSTANTS
156
161
******************************************************************************/
Original file line number Diff line number Diff line change 31
31
#include " tls/utility/CryptoUtil.h"
32
32
#elif defined(BOARD_ESP)
33
33
#include < WiFiClientSecure.h>
34
+ #elif defined(ARDUINO_UNOR4_WIFI)
35
+ #include < WiFiSSLClient.h>
34
36
#elif defined(ARDUINO_PORTENTA_C33)
35
37
#include " tls/utility/CryptoUtil.h"
36
38
#include < SSLClient.h>
@@ -148,6 +150,8 @@ class ArduinoIoTCloudTCP: public ArduinoIoTCloudClass
148
150
CryptoUtil _crypto;
149
151
#elif defined(BOARD_ESP)
150
152
WiFiClientSecure _sslClient;
153
+ #elif defined(ARDUINO_UNOR4_WIFI)
154
+ WiFiSSLClient _sslClient;
151
155
#elif defined(ARDUINO_PORTENTA_C33)
152
156
ArduinoIoTCloudCertClass _cert;
153
157
SSLClient _sslClient;
You can’t perform that action at this time.
0 commit comments