Skip to content

Commit

Permalink
Fix sketch descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas committed May 7, 2019
1 parent 6a10980 commit b76ca66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions 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 = 1; // The number of chained matrices;
const uint16_t NUM_TILES = 2; // 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
1 change: 1 addition & 0 deletions p1_serial_rgb_send_canvas/p1_serial_rgb_send_canvas.pde
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* Example 1.
* This sketch sends all the pixels of the canvas to the serial port.
* A helper function to scan all the serial ports for a configured controller is provided.
*/
Expand Down
1 change: 1 addition & 0 deletions p2_serial_rgb_send_webcam/p2_serial_rgb_send_webcam.pde
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* Example 2.
* This sketch sends all the pixels of the canvas to the serial port.
* A helper function to scan all the serial ports for a configured controller is provided.
*
Expand Down

0 comments on commit b76ca66

Please sign in to comment.