-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtft.h
More file actions
36 lines (19 loc) · 731 Bytes
/
tft.h
File metadata and controls
36 lines (19 loc) · 731 Bytes
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
#ifndef _TFT_H
#define _TFT_H
#include <TFT_eSPI.h>
extern TFT_eSPI _tft;
extern void drawTftFlightAirborne(unsigned long timestamp, unsigned long delta);
extern void drawTftFlightAirborneStart();
extern void drawTftGraphAxesXY(float minX, float maxX, float minY, float maxY, int flightNbr, char *curveName);
extern void drawTftGraphForlightNbr(int flightNbr, int curveType);
extern void drawTftReset();
extern void drawTftSensorImu();
extern String drawTftSplashPad(float value, int width, char * format);
extern void drawTftSleep();
extern void drawTftSplash();
extern void drawTftSplashSim();
extern void drawTftSplashSimStop();
extern void setupTft();
extern void sleepTft();
extern void sleepTftHold();
#endif