Class creation
This commit is contained in:
17
arduino/Screen code/Screen-code-full/displayText.h
Normal file
17
arduino/Screen code/Screen-code-full/displayText.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef DISPLAYTEXT_H
|
||||
#define DISPLAYTEXT_H
|
||||
|
||||
#include "Adafruit_GFX.h"
|
||||
#include "Adafruit_ST7796S_kbv.h"
|
||||
|
||||
class DisplayText {
|
||||
private:
|
||||
Adafruit_ST7796S_kbv& tft;
|
||||
int centerText(char* text);
|
||||
|
||||
public:
|
||||
DisplayText(Adafruit_ST7796S_kbv& tftDisplay);
|
||||
void writeText(char* text, int size, int posX, int posY, int screenTime, bool center);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user