display.ino 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. LED Matrix Display Driver
  3. Library doc
  4. https://majicdesigns.github.io/MD_MAX72XX/class_m_d___m_a_x72_x_x.html
  5. */
  6. //frame buffer, 32x16px
  7. //each LED is 1 bit
  8. unsigned char frame_buffer[] = {
  9. 0x00, 0x00, 0x00, 0x00,
  10. 0x00, 0x00, 0x00, 0x00,
  11. 0x00, 0x00, 0x00, 0x00,
  12. 0x22, 0x00, 0x00, 0x44,
  13. 0x44, 0x00, 0x00, 0x22,
  14. 0x89, 0x80, 0x01, 0x91,
  15. 0x92, 0x40, 0x02, 0x49,
  16. 0x82, 0x40, 0x02, 0x41,
  17. 0x81, 0x80, 0x01, 0x81,
  18. 0x80, 0x04, 0x40, 0x01,
  19. 0x80, 0x09, 0x20, 0x01,
  20. 0x87, 0x89, 0x21, 0xe1,
  21. 0x40, 0x06, 0xc0, 0x02,
  22. 0x27, 0x80, 0x01, 0xe4,
  23. 0x00, 0x00, 0x00, 0x00,
  24. 0x00, 0x00, 0x00, 0x00
  25. };
  26. //Helper function to reverse a byte in bits
  27. //e.g. 11011101 -> 10111011
  28. byte fByte(byte c) {
  29. char r = 0;
  30. for (byte i = 0; i < 8; i++) {
  31. r <<= 1;
  32. r |= c & 1;
  33. c >>= 1;
  34. } return r;
  35. }
  36. /*
  37. * renderFrame render the frame buffer to display
  38. *
  39. * The display is an upside down two split LED grid matrix display
  40. * the render sequence (when viewed from front) is as follows
  41. * and each matrix module is upside down (row 0 on bottom)
  42. * [8][7][6][5]
  43. * [4][3][2][1]
  44. *
  45. */
  46. void renderFrame() {
  47. //Top half of the display
  48. int fsize = sizeof(frame_buffer);
  49. for (int i = 0; i < fsize / 2; i += 4) {
  50. for (int d = 0; d <= 3; d++) {
  51. //For each of the driver, from 0 to 3
  52. byte rowData = frame_buffer[i + d];
  53. mx.setRow(d, d, 7 - int(i / 4), fByte(rowData));
  54. }
  55. }
  56. //Bottom half of the display
  57. for (int i = fsize / 2; i < fsize; i += 4) {
  58. for (int d = 4; d <= 7; d++) {
  59. //For each of the driver, from 4 to 7
  60. byte rowData = frame_buffer[i + (d - 4)];
  61. mx.setRow(d, d, 7 - (int(i / 4) - 8), fByte(rowData));
  62. }
  63. }
  64. }
  65. //Set display brightness, from 0x0 to 0xF
  66. void setDisplayBrightness(byte brightness){
  67. for(int i =0; i<MAX_DEVICES; i++){
  68. mx.control(i,MD_MAX72XX::INTENSITY, brightness);
  69. }
  70. }