Skip to content

Commit

Permalink
Adjust mesh display
Browse files Browse the repository at this point in the history
Adjust mesh display so there is enough space to print all the addresses and nodeIDs
  • Loading branch information
TMRh20 committed Nov 21, 2021
1 parent da2058a commit 49ea85e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/ncurses/RF24Gateway_ncurses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ int main()

drawMeshPad();
wscrl(meshPad, meshScroll);
prefresh(meshPad, 0, 0, 4, 26, 14, 47);
prefresh(meshPad, 0, 0, 4, 26, 14, 48);

drawRF24Pad();
prefresh(rf24Pad, 0, 0, 4, 51, 14, 73);
prefresh(rf24Pad, 0, 0, 4, 52, 14, 74);

if (showConnPad)
{
Expand Down
4 changes: 2 additions & 2 deletions examples/ncursesInt/RF24Gateway_ncursesInt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ int main()

drawMeshPad();
wscrl(meshPad, meshScroll);
prefresh(meshPad, 0, 0, 4, 26, 14, 47);
prefresh(meshPad, 0, 0, 4, 26, 14, 48);

drawRF24Pad();
prefresh(rf24Pad, 0, 0, 4, 51, 14, 73);
prefresh(rf24Pad, 0, 0, 4, 52, 14, 74);

if (showConnPad)
{
Expand Down

0 comments on commit 49ea85e

Please sign in to comment.