Skip to content

Commit

Permalink
Add character: <U> to font: <Block> (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sriparno08 authored Oct 6, 2024
1 parent 5868098 commit 8eecca0
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -404,16 +404,24 @@ class Block : public Fonts
return character;
}

/*
vs U()
{
vs character = getCharGrid();
vs U()
{
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;
}
*/
return character;
}

vs V()
{
Expand Down

0 comments on commit 8eecca0

Please sign in to comment.