| 131 | } |
| 132 | |
| 133 | OLEDDISPLAY_COLOR OLEDDisplay::getColor() { |
| 134 | return this->color; |
| 135 | } |
| 136 | |
| 137 | void OLEDDisplay::setPixel(int16_t x, int16_t y) { |
| 138 | if (x >= 0 && x < this->width() && y >= 0 && y < this->height()) { |
nothing calls this directly
no outgoing calls
no test coverage detected