85d0d44891
Based on Aurora code.
20 lines
280 B
C++
20 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
|