#ifndef API_H #define API_H #include #include class API { public: API(String user, String password, String host, bool https = true); bool wifiBegin(String wifiId, String wifiPass, Stream* espSerial); bool sendValute(String val, String poubelleID, String unit, bool full); JSONVar* connect(); private: String user; String password; String serveurHost; bool https; WiFiEspClient* client; String token; }; #endif