diff options
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 |
