#ifndef FeaturesService_h #define FeaturesService_h #include #ifdef ESP32 #include #include #elif defined(ESP8266) #include #include #endif #include #include #include #define MAX_FEATURES_SIZE 256 #define FEATURES_SERVICE_PATH "/rest/features" class FeaturesService { public: FeaturesService(AsyncWebServer* server); private: void features(AsyncWebServerRequest* request); }; #endif