| 213 | } |
| 214 | |
| 215 | void OLEDDisplay::fillRect(int16_t xMove, int16_t yMove, int16_t width, int16_t height) { |
| 216 | for (int16_t x = xMove; x < xMove + width; x++) { |
| 217 | drawVerticalLine(x, yMove, height); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | void OLEDDisplay::drawCircle(int16_t x0, int16_t y0, int16_t radius) { |
| 222 | int16_t x = 0, y = radius; |
nothing calls this directly
no outgoing calls
no test coverage detected