Ejemplo n.º 1
0
 void fill(uint16_t x, uint16_t y, uint16_t width, uint16_t height, RgbColor color) {
     fill(x, y, width, height, color.red(), color.green(), color.blue());
 }
Ejemplo n.º 2
0
 void setPixel(uint16_t x, uint16_t y, RgbColor color) {
     setPixel(x, y, color.red(), color.green(), color.blue());
 }