-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsensorplot_webinterface.h
executable file
·57 lines (46 loc) · 1.43 KB
/
sensorplot_webinterface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef _SENSORPLOT_WEBINTERFACE_H
#define _SENSORPLOT_WEBINTERFACE_H
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <string.h>
typedef struct Sensor_Plot_S {
String title;
String unit;
String slag;
int interval;
int good;
int bad;
int min;
int max;
int clipping;
int stepsize;
int cycle;
int cycleStepsize;
int *valuesCount;
float *values;
int *valuesMeasurmentMillis;
} Sensor_Plot;
class SensorPlot_WebInterface {
private:
String websiteTitle = "";
String callbackInput = "";
String callbackButton = "";
int plotterCount = 0;
Sensor_Plot *plotter_p[32];
ESP8266WebServer *server;
void responseHTML();
void responseCSS();
void responseJS();
void responseConfig();
void responseGraphData();
void responseGraphSlag(int index);
void responseCSV(int index, int timestamp);
void responseWidgetHTML();
void responseWidgetJS();
public:
SensorPlot_WebInterface();
void addPlot(String title, String unit, int interval, int good, int bad, int min, int max, int stepsize, int cycle, int cycleStepsize, int *valuesCount, float *values, int *valuesMeasurmentMillis);
void interfaceConfig(String websiteTitle, String callbackInput, String callbackButton);
void serverResponseSetup(ESP8266WebServer *server, int (*callback)(String response));
};
#endif