Advertisement
kajsabuckard

Untitled

Feb 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #include <stdint.h> /* Declarations of uint_32 and the like */
  2. #include <pic32mx.h> /* Declarations of system-specific addresses etc */
  3. #include "header.h" /* Declatations for these labs */
  4.  
  5.  
  6.  
  7. char display_matrix[128][32];
  8.  
  9. char mushroom_bitmap[8][8] =
  10. {1, 1, 0, 0, 0, 0, 1, 1},
  11. {1, 0, 1, 1, 1, 1, 0, 1},
  12. {0, 1, 0, 1, 1, 0, 1, 0},
  13. {0, 1, 1, 0, 1, 1, 0, 0},
  14. {0, 0, 0, 1, 1, 0, 0, 0},
  15. {0, 1, 0, 1, 1, 0, 1, 0},
  16. {1, 0, 1, 1, 1, 1, 0, 1},
  17. {1, 1, 1, 0, 0, 1, 1, 1};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement