Last active
June 20, 2020 08:18
-
-
Save vivekanandRdhakane/f697da1c0af5644c7ca6c3121f6263e3 to your computer and use it in GitHub Desktop.
code sniplet for displaying 16x16 matrix
This file contains 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
for (int j = 0; j < Char_Horizontal_Columns_Required; j++) //#define Char_Horizontal_Columns_Required 16 | |
{ | |
for (int i = 0; i < Char_Verticle_Pages_Required; i++) //#define Char_Verticle_Pages_Required 2 | |
{ | |
setCursor(j,i); | |
writeData(data[j*Char_Verticle_Pages_Required+i]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment