This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Sketch for ESP8266 testing multiple tcp client connections | |
https://github.com/JiriBilek/WiFiSpi/issues/13 | |
*/ | |
#include <ESP8266WiFi.h> | |
const char* ssid = "**"; | |
const char* password = "**"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Sketch for ESP8266 testing the issue 13, namely multiple tcp server connections | |
https://github.com/JiriBilek/WiFiSpi/issues/13 | |
*/ | |
#include <ESP8266WiFi.h> | |
const char* ssid = "****"; | |
const char* password = "****"; |