Last active
November 17, 2022 02:29
-
-
Save jayne-mast/b8eadf031902b8eaa0b0 to your computer and use it in GitHub Desktop.
All letters of the alphabet for a 8x8 LED grid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const byte a[8]={B00111100,B01000010,B01000010,B01111110,B01000010,B01000010,B01000010,B01000010}; | |
const byte b[8]={B01111100,B01000010,B01000010,B01111100,B01000010,B01000010,B01000010,B01111100}; | |
const byte c[8]={B00111110,B01000000,B01000000,B01000000,B01000000,B01000000,B01000000,B00111110}; | |
const byte d[8]={B01111100,B01000010,B01000010,B01000010,B01000010,B01000010,B01000010,B01111100}; | |
const byte e[8]={B01111110,B01000000,B01000000,B01111000,B01000000,B01000000,B01000000,B01111110}; | |
const byte f[8]={B01111110,B01000000,B01000000,B01111000,B01000000,B01000000,B01000000,B01000000}; | |
const byte g[8]={B00111100,B01000010,B01000010,B01000000,B01001110,B01000010,B01000010,B00111100}; | |
const byte h[8]={B01000010,B01000010,B01000010,B01111110,B01000010,B01000010,B01000010,B01000010}; | |
const byte i[8]={B01111100,B00010000,B00010000,B00010000,B00010000,B00010000,B00010000,B01111100}; | |
const byte j[8]={B00000010,B00000010,B00000010,B00000010,B00000010,B00000010,B01000010,B00111100}; | |
const byte k[8]={B01000100,B01001000,B01010000,B01100000,B01010000,B01001000,B01000100,B01000010}; | |
const byte l[8]={B01000000,B01000000,B01000000,B01000000,B01000000,B01000000,B01000000,B01111110}; | |
const byte m[8]={B01000010,B01100110,B01011010,B01000010,B01000010,B01000010,B01000010,B01000010}; | |
const byte n[8]={B01000010,B01100010,B01010010,B01001010,B01000110,B01000010,B01000010,B01000010}; | |
const byte o[8]={B00111100,B01000010,B01000010,B01000010,B01000010,B01000010,B01000010,B00111100}; | |
const byte p[8]={B00111100,B01000010,B01000010,B01111100,B01000000,B01000000,B01000000,B01000000}; | |
const byte q[8]={B00111100,B01000010,B01000010,B01000010,B01000010,B01001010,B01000100,B00111011}; | |
const byte r[8]={B00111100,B01000010,B01000010,B01111100,B01010000,B01001000,B01000100,B01000100}; | |
const byte s[8]={B00111100,B01000010,B01000000,B00111100,B00000010,B00000010,B01000010,B00111100}; | |
const byte t[8]={B01111100,B00010000,B00010000,B00010000,B00010000,B00010000,B00010000,B00010000}; | |
const byte u[8]={B01000010,B01000010,B01000010,B01000010,B01000010,B01000010,B01000010,B00111100}; | |
const byte v[8]={B01000010,B01000010,B01000010,B01000010,B01000010,B01000010,B00100100,B00011000}; | |
const byte w[8]={B01000010,B01000010,B01000010,B01000010,B01000010,B01011010,B01100110,B01000010}; | |
const byte x[8]={B01000010,B01000010,B00100100,B00011000,B00011000,B00100100,B01000010,B01000010}; | |
const byte y[8]={B01000100,B01000100,B00101000,B00010000,B00010000,B00010000,B00010000,B00010000}; | |
const byte z[8]={B01111110,B00000100,B00001000,B00010000,B00100000,B01000000,B01000000,B01111110}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment