first commit
This commit is contained in:
21
ESP8266_DOMOTICZ_DEEP_SLEEP/Graph.h
Executable file
21
ESP8266_DOMOTICZ_DEEP_SLEEP/Graph.h
Executable file
@@ -0,0 +1,21 @@
|
||||
#ifndef Graph_h
|
||||
#define Graph_h
|
||||
#include <Arduino.h>
|
||||
#include "Ecran.h"
|
||||
#include "Point.h"
|
||||
|
||||
class Graph {
|
||||
public :
|
||||
Graph(Ecran * ecran, int x0, int y0 ,int x1, int y1);
|
||||
void drawAxes();
|
||||
void drawTitle();
|
||||
void drawDatas();
|
||||
void drawGraph();
|
||||
public :
|
||||
Ecran * ecran;
|
||||
int x0, y0,x1, y1;
|
||||
String title, axe_x, axe_y;
|
||||
Point datas[];
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user