Search found 1 match
- Fri Dec 09, 2022 4:06 am
- Forum: ESP-IDF
- Topic: LWIP- mulitple client example
- Replies: 13
- Views: 30335
Re: LWIP- mulitple client example
#if CONFIG_FREERTOS_UNICORE #define ARDUINO_RUNNING_CORE 0 #else #define ARDUINO_RUNNING_CORE 1 #endif #include <WiFi.h> const char* ssid = "[YOUR-NETWORK-SSID]"; const char* password = "[YOUR-SSID-PASSWORD]"; void TaskClientSocket( void *pvParameters ); WiFiServer wifiServer(80); void setup() { // ...