smartPOC-tx/include/dwd.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

29 lines
No EOL
598 B
C++

#if !defined(_DWD_H) && SMART_POC_MODULE_DWD
#define _DWD_H
#include <WiFiClient.h>
#include <HTTPClient.h>
class DWDClient
{
public:
WiFiClient *_client;
String currentMessage;
explicit DWDClient(WiFiClient *client);
void begin(int intervalMinutes, String region);
void check();
void loop();
bool isDirty();
private:
bool _dirty;
unsigned long lastCheck = 0;
unsigned long checkInterval = 300000;
String lastMessage;
String rssUrl;
String rssData;
HTTPClient _http;
String parseRSS(String xmlData);
String extractTagContent(String source, String tag);
};
#endif