ba58902843
Signed-off-by: Emil Muratov <gpm@hotplug.ru>
20 lines
294 B
C++
20 lines
294 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
|