Skip to content

Commit

Permalink
Change the default value for NUM_TILES
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas committed Sep 25, 2019
1 parent eec4e2f commit a321412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a3_serial_rgb_slave/a3_serial_rgb_slave.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
const uint16_t MATRIX_WIDTH = 64; // Number of leds per tile
const uint16_t MATRIX_HEIGHT = 32;
const uint8_t NUM_CHANNELS = 3; // Let's assume RGB data with a depth of 8 bits (also check the COLOR_DEPTH define)
const uint16_t NUM_TILES = 2; // The number of chained matrices;
const uint16_t NUM_TILES = 1; // The number of chained matrices;
// let the software handle the display configuration.
const uint16_t TOTAL_WIDTH = MATRIX_WIDTH; // Total
const uint16_t TOTAL_HEIGHT = MATRIX_HEIGHT * NUM_TILES; // The matrices are configured as a vertical stack.
Expand Down

0 comments on commit a321412

Please sign in to comment.