aboutsummaryrefslogtreecommitdiff
path: root/examples/AuroraDemo/PatternTest.h
diff options
context:
space:
mode:
authormrcodetastic <12006953+mrcodetastic@users.noreply.github.com>2024-07-29 17:23:53 +0100
committermrcodetastic <12006953+mrcodetastic@users.noreply.github.com>2024-07-29 17:23:53 +0100
commitf77a5cac9ce681168bb38aef14bc7e4e2efcf47a (patch)
tree3627e21056cea0877d50aedcee2dfa2545777a6e /examples/AuroraDemo/PatternTest.h
parente2f856d71303e98879e87bf29011c3ad16c67d47 (diff)
Make AuroraDemo great again.
And test out ChatGPT's attempt to create some effects as well.
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