Skip to content

Commit

Permalink
Add <b> Block (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 8, 2024
1 parent c412b56 commit 1548ab6
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -542,16 +542,25 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
}
*/

/*
vs b()
{
vs character = getCharGrid();
//Enter the character grid in ROWS X COLS

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

character[0] = " .----------------. ";
character[1] = "| .--------------. |";
character[2] = "| | ______ | |";
character[3] = "| | |_ _ \ | |";
character[4] = "| | | |_) | | |";
character[5] = "| | | __'. | |";
character[6] = "| | _| |__) | | |";
character[7] = "| | |_______/ | |";
character[8] = "| | | |";
character[9] = "| '--------------' |";
character[10] = " '----------------' ";

return character;
}
*/
return character;
};

vs c()
{
Expand Down

0 comments on commit 1548ab6

Please sign in to comment.