aboutsummaryrefslogtreecommitdiff
path: root/examples/AuroraDemo/PatternTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/AuroraDemo/PatternTest.h')
-rw-r--r--examples/AuroraDemo/PatternTest.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/AuroraDemo/PatternTest.h b/examples/AuroraDemo/PatternTest.h
deleted file mode 100644
index 7a4a07d..0000000
--- a/examples/AuroraDemo/PatternTest.h
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#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