aboutsummaryrefslogtreecommitdiff
path: root/examples/AuroraDemo/PatternTest.hpp
blob: 7a4a07d1763cdde46b1c477f9e7e8d17c686b4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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