Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generic HTTP class: Thingspeak and Async OTA #1909

Open
wants to merge 13 commits into
base: dev
Choose a base branch
from
7 changes: 7 additions & 0 deletions code/espurna/config/prototypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ void mqttSendStatus();
// OTA
// -----------------------------------------------------------------------------

#include <Updater.h>
#include <ArduinoOTA.h>

#if OTA_CLIENT == OTA_CLIENT_ASYNCTCP
Expand Down Expand Up @@ -325,6 +326,12 @@ void settingsProcessConfig(const settings_cfg_list_t& config, settings_filter_t
Stream & terminalSerial();
#endif

// -----------------------------------------------------------------------------
// Thingspeak
// -----------------------------------------------------------------------------
class AsyncHttp;
struct AsyncHttpError;

// -----------------------------------------------------------------------------
// Utils
// -----------------------------------------------------------------------------
Expand Down
Loading