#ifdef ESP8266 #include #else // ESP32 #include #include #endif #ifndef Network_h #define Network_h class NetworkClass { public: IPAddress localIP(); IPAddress subnetMask(); IPAddress gatewayIP(); bool isConnected(); bool isEthernet(); }; extern NetworkClass Network; #endif