Fix TCP bridge compile error

This commit is contained in:
Theo Arends 2021-08-03 11:51:11 +02:00
parent f29312415e
commit 0d2432a15b

View File

@ -35,7 +35,7 @@ WiFiServer *server_tcp = nullptr;
WiFiClient client_tcp[TCP_BRIDGE_CONNECTIONS];
uint8_t client_next = 0;
uint8_t *tcp_buf = nullptr; // data transfer buffer
IPAddress ip_filter = 0;
IPAddress ip_filter;
#include <TasmotaSerial.h>
TasmotaSerial *TCPSerial = nullptr;