I am trying to fill a rounded rectangle on an SSD1283A display driven by LCDWIKI_GUI.h.
The display correctly draws a rectangle with a black boarder line:
// Set the line color to YELLOW
mylcd.Set_Draw_color (BLACK);
// Draw the small rounded rectangle
mylcd.Draw_Round_Rectangle (1,2,127,35,6);
mylcd.Draw_Round_Rectangle (2,3,126,34,6);
What command do I use to fill this rectangle with a BLUE color?