21 lines
280 B
C
21 lines
280 B
C
|
|
||
|
#ifndef PatternTest_H
|
||
|
#define PatternTest_H
|
||
|
|
||
|
class PatternTest : public Drawable {
|
||
|
private:
|
||
|
|
||
|
public:
|
||
|
PatternTest() {
|
||
|
name = (char *)"Test Pattern";
|
||
|
}
|
||
|
|
||
|
unsigned int drawFrame() {
|
||
|
|
||
|
matrix.fillScreen(matrix.color565(128, 0, 0));
|
||
|
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif
|