mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-15 08:56:34 +02:00
[temporary commit]
This commit is contained in:
@ -12,18 +12,19 @@
|
||||
#define _AG_API_CLIENT_H_
|
||||
|
||||
#include "AgConfigure.h"
|
||||
#include "Main/PrintLog.h"
|
||||
#include <Arduino.h>
|
||||
|
||||
class AgApiClient {
|
||||
class AgConfigure;
|
||||
class AirGradient;
|
||||
|
||||
class AgApiClient : public PrintLog {
|
||||
private:
|
||||
Stream &debugLog;
|
||||
AgConfigure &config;
|
||||
|
||||
bool getConfigFailed;;
|
||||
bool getConfigFailed;
|
||||
bool postToServerFailed;
|
||||
|
||||
void printLog(String log);
|
||||
|
||||
public:
|
||||
AgApiClient(Stream &stream, AgConfigure &config);
|
||||
~AgApiClient();
|
||||
|
Reference in New Issue
Block a user