2020-03-28 13:30:51 +01:00
|
|
|
#ifndef WLED_XML_H
|
|
|
|
#define WLED_XML_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sending XML status files to client
|
|
|
|
*/
|
|
|
|
char* XML_response(AsyncWebServerRequest *request, char* dest = nullptr);
|
|
|
|
char* URL_response(AsyncWebServerRequest *request);
|
|
|
|
void sappend(char stype, const char* key, int val);
|
|
|
|
void sappends(char stype, const char* key, char* val);
|
|
|
|
void getSettingsJS(byte subPage, char* dest);
|
|
|
|
|
2020-03-25 09:00:55 +01:00
|
|
|
#endif // WLED_XML_H
|