aboutsummaryrefslogtreecommitdiff
path: root/examples/AuroraDemo/PatternTest.hpp
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.hpp
parente2f856d71303e98879e87bf29011c3ad16c67d47 (diff)
Make AuroraDemo great again.
And test out ChatGPT's attempt to create some effects as well.
Diffstat (limited to 'examples/AuroraDemo/PatternTest.hpp')
-rw-r--r--examples/AuroraDemo/PatternTest.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/AuroraDemo/PatternTest.hpp b/examples/AuroraDemo/PatternTest.hpp
new file mode 100644
index 0000000..7a4a07d
--- /dev/null
+++ b/examples/AuroraDemo/PatternTest.hpp
@@ -0,0 +1,20 @@
+
+#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