I've been playing around with 3x 8x8 matrix leds running on max7219's
My name tag
Was bored, had to do something fun ;) new name sign for meetings etc. - YouTube
Anyway.. I want to know more about the forming of these bytes.
Clearly i have both letters and symbols, and found a online java script that can
convert symbols i "draw" into bytes for me..
However, when i look at the definition in my code, i fail to understand what the rows define.
Example, the letter/number 1 can be written like this
3, 8, B01000010, B01111111, B01000000, B00000000, B00000000
B01000010,
B01111111,
B01000000,
B00000000,
B00000000
I cannot see the number 1 form like this.
smiley face like this
8, 8, B00111100, B01000010, B10010101, B10100001, B10100001, B10010101, B01000010, B00111100
I can see the smiley form like this.
B00111100,
B01000010,
B10010101,
B10100001,
B10100001,
B10010101,
B01000010,
B00111100
Question 1:
What does 3, 8, in 1 and 8, 8, in smiley face define?
I'm guessing the second row is the number of leds across or something.
Question 2:
Why does 1 only need 5 rows of 1/0's while the smiley need 8?
Martin.