Skip to content

Instantly share code, notes, and snippets.

View JiriBilek's full-sized avatar

Jiri Bilek JiriBilek

  • Czech Republic
View GitHub Profile
/*
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 = "****";
@JiriBilek
JiriBilek / ClientTest.ino
Created January 13, 2019 07:19
16 concurrent clients on ESP8266. All connect to www.example.com, request GET of unique url and read the respose (that is the same for all urls)
/*
Sketch for ESP8266 testing multiple tcp client connections
https://github.com/JiriBilek/WiFiSpi/issues/13
*/
#include <ESP8266WiFi.h>
const char* ssid = "**";
const char* password = "**";