smartPOC-tx/include/mowas.h
cheetah 60b8456757
All checks were successful
build / build (push) Successful in 2m0s
added DWD/MOWAS build flags
2025-03-31 00:30:44 +02:00

33 lines
No EOL
712 B
C++

#if !defined(_MOWAS_H) && SMART_POC_MODULE_MOWAS
#define _MOWAS_H
#include <WiFiClient.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>
class MoWaSClient
{
public:
WiFiClient *_client;
String currentMessage;
explicit MoWaSClient(WiFiClient *client);
void begin(int intervalMinutes, String region);
bool check();
void loop();
bool isDirty();
private:
bool _dirty;
unsigned long lastCheck = 0;
unsigned long checkInterval = 300000;
String lastMessage;
String dashboardData;
String dashboardUrl;
String warningUrl;
HTTPClient _http;
String parseDashboard(String jsonData);
String extractTagContent(String source, String tag);
};
#endif