Skip to content

Commit

Permalink
feat/add-r-to-font-bllock (#1170)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 13, 2024
1 parent 2553249 commit 77177d0
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 @@ -890,17 +890,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
*/

/*

vs r()
{
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;
}

*/


/*
vs s()
Expand Down

0 comments on commit 77177d0

Please sign in to comment.