Hi all
I developed a 5x5 LED matrix .
Now I want to develop a ticker.
For this I coded some letters in a two dimensional arrays
e.g. Letters X and M:
byte X_Array[5][5] = {
{X, _, _, _, X},
{_, X, _, X, _},
{_, _, X, _, _},
{_, X, _, X, _},
{X, _, _, _, X},
};
byte M_Array[5][5] = {
{X, _, _, _, X},
{X, X, _, X, X},
{X, _, X, _, X},
{X, _, _, _, X},
{X, _, _, _, X},
};
Now I need another array to store words or whole sentences.
In this new array single letters should be appended
How can I achieve this? How has the new array to look like?
Thanks
Regards
Mario