MCPcopy Create free account
hub / github.com/PricelessToolkit/MailBoxGuard / fillRect

Method fillRect

Code/Arduino_libraries/SSD1306/OLEDDisplay.cpp:215–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215void 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
221void OLEDDisplay::drawCircle(int16_t x0, int16_t y0, int16_t radius) {
222 int16_t x = 0, y = radius;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected