ThingPulse OLED SSD1306
Dependents: Turtle_RadioShuttle mbed-os5-F303-18650-Manager-tp4056 Kretanje_kroz_izbornike_OLED128x64_4tipke
Diff: OLEDDisplay.h
- Revision:
- 3:99a409809366
- Parent:
- 2:4ed55dfe5be7
diff -r 4ed55dfe5be7 -r 99a409809366 OLEDDisplay.h
--- a/OLEDDisplay.h Wed May 29 11:17:58 2019 +0200
+++ b/OLEDDisplay.h Thu Jun 06 09:29:02 2019 +0200
@@ -179,6 +179,9 @@
// Draw a pixel at given position
void setPixel(int16_t x, int16_t y);
+ // Clear a pixel at given position FIXME: INVERSE is untested with this function
+ void clearPixel(int16_t x, int16_t y);
+
// Draw a line from position 0 to position 1
void drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1);
Helmut Tschemernjak