first commit
This commit is contained in:
19
ESP8266_DOMOTICZ_ECRAN_HALL/Graph.h
Normal file
19
ESP8266_DOMOTICZ_ECRAN_HALL/Graph.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef Graph_h
|
||||
#define Graph_h
|
||||
#include <Arduino.h>
|
||||
#include "Ecran.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;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user