0749fa4193
Also known as the @vortigont release! Hooray!
20 lines
296 B
C++
20 lines
296 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));
|
|
return 1000;
|
|
}
|
|
};
|
|
|
|
#endif
|