Skip to content

Commit

Permalink
[feature]: adding z to block (#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 14, 2024
1 parent 3fd34d3 commit abaec61
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -1023,17 +1023,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
*/

/*

vs z()
{
vs character = getCharGrid();
vs character = getCharGrid(11, 20);

//Enter the character grid in ROWS X COLS
character[0] = " .----------------. ";
character[1] = "| .--------------. |";
character[2] = "| | ________ | |";
character[3] = "| | | __ _| | |";
character[4] = "| | |_/ / / | |";
character[5] = "| | .'.' _ | |";
character[6] = "| | _/ /__/ | | |";
character[7] = "| | |________| | |";
character[8] = "| | | |";
character[9] = "| '--------------' |";
character[10]= " '----------------' ";

return character;
}

*/


// Numbers

Expand Down

0 comments on commit abaec61

Please sign in to comment.