Assume unspecified boards are using standard WiFi library.

pull/499/head
gojimmypi 2025-04-09 16:59:42 +02:00
parent 638297a18a
commit 40fa4eb9bf
No known key found for this signature in database
GPG Key ID: 3D684FA88DC3FAA8
2 changed files with 4 additions and 1 deletions

View File

@ -166,9 +166,10 @@ Tested with:
#elif defined(OTHER_BOARD)
*/
#else
/* assume all other boards using WiFi library. Edit as needed: */
#include <WiFi.h>
#define USING_WIFI
WiFiClient client;
#endif
/* Only for syntax highlighters to show interesting options enabled: */

View File

@ -166,6 +166,8 @@ Tested with:
#elif defined(OTHER_BOARD)
*/
#else
/* assume all other boards using WiFi library. Edit as needed: */
#include <WiFi.h>
#define USING_WIFI
WiFiClient client;
WiFiServer server(WOLFSSL_PORT);