diff options
| author | mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> | 2021-02-10 15:49:19 +0000 |
|---|---|---|
| committer | mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> | 2021-02-10 15:49:19 +0000 |
| commit | 0749fa41932cc163a46801c1c1d6d2a309e8f273 (patch) | |
| tree | 396fd65acebf24c2335399039819485dc930ead1 /examples/BitmapIcons | |
| parent | 6ea2280ff3af21828974832402270ce54e52c5cc (diff) | |
Update to 2.0.0
Also known as the @vortigont release! Hooray!
Diffstat (limited to 'examples/BitmapIcons')
| -rw-r--r-- | examples/BitmapIcons/BitmapIcons.ino | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/BitmapIcons/BitmapIcons.ino b/examples/BitmapIcons/BitmapIcons.ino index 09c6815..8f86135 100644 --- a/examples/BitmapIcons/BitmapIcons.ino +++ b/examples/BitmapIcons/BitmapIcons.ino @@ -27,7 +27,15 @@ #define CLK_PIN 16 -// Display +/* + * Below is an is the 'legacy' way of initialising the MatrixPanel_I2S_DMA class. + * i.e. MATRIX_WIDTH and MATRIX_HEIGHT are modified by compile-time directives. + * By default the library assumes a single 64x32 pixel panel is connected. + * + * Refer to the example '2_PatternPlasma' on the new / correct way to setup this library + * for different resolutions / panel chain lengths within the sketch 'setup()'. + * + */ MatrixPanel_I2S_DMA display; // RGB Panel // Wifi Logo, generated using LCD Image Converter: http://www.riuson.com/lcd-image-converter |
