Skip to content

Commit

Permalink
Add support Arduino UNO R4 WiFi.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Aug 8, 2023
1 parent 89b3eeb commit 46c26ca
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions examples/certificate/certificate.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>)
#include <WiFiS3.h>
#endif

#include <ESP_SSLClient.h>
Expand Down
4 changes: 3 additions & 1 deletion examples/http_upgrade/http_upgrade.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#elif __has_include(<WiFiNINA.h>)
#elif __has_include(<WiFiNINA.h>)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>)
#include <WiFiS3.h>
#endif

#include <ESP_SSLClient.h>
Expand Down
4 changes: 3 additions & 1 deletion examples/https/https.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#elif __has_include(<WiFiNINA.h>)
#elif __has_include(<WiFiNINA.h>)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>)
#include <WiFiS3.h>
#endif

#include <ESP_SSLClient.h>
Expand Down
4 changes: 3 additions & 1 deletion examples/mqtt/mqtt.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#elif __has_include(<WiFiNINA.h>)
#elif __has_include(<WiFiNINA.h>)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>)
#include <WiFiS3.h>
#endif

#include <ESP_SSLClient.h>
Expand Down

0 comments on commit 46c26ca

Please sign in to comment.