#include "SH1106Brzo.h"
#include "SH1106Wire.h"
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
// WEB Server
// WiFiServer DHTServer(88); // when uncomment it will break the code.
// UDP
// WiFiUDP Udp; // when uncomment it will break the code.
SH1106Brzo display2(0x3c, D3, D5);
SH1106Wire display(0x3c, D1, D2);
void setup() {}
void loop() {}
When you uncomment WiFiServer DHTServer(88); it will break the code.
Or
When you uncomment WiFiUDP Udp; it will break the code.
Hi: Similar to this issue : #81 issue
When you uncomment
WiFiServer DHTServer(88);
it will break the code. Or When you uncommentWiFiUDP Udp;
it will break the code.