WxBox/include/http_static.h
2024-04-05 18:51:21 +03:00

12 lines
213 B
C++

// http_static.h
#include <Arduino.h>
#ifndef HTTP_STATIC_H
#define HTTP_STATIC_H
namespace http_static {
extern const char index_html[] PROGMEM;
extern const char sensor_things_resp[] PROGMEM;
}
#endif