diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_oled_driver.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/feature_oled_driver.md b/docs/feature_oled_driver.md index 772ce57bd..5f3095198 100644 --- a/docs/feature_oled_driver.md +++ b/docs/feature_oled_driver.md | |||
@@ -247,6 +247,10 @@ void oled_write_raw_byte(const char data, uint16_t index); | |||
247 | // Writes a PROGMEM string to the buffer at current cursor position | 247 | // Writes a PROGMEM string to the buffer at current cursor position |
248 | void oled_write_raw_P(const char *data, uint16_t size); | 248 | void oled_write_raw_P(const char *data, uint16_t size); |
249 | 249 | ||
250 | // Sets a specific pixel on or off | ||
251 | // Coordinates start at top-left and go right and down for positive x and y | ||
252 | void oled_write_pixel(uint8_t x, uint8_t y, bool on); | ||
253 | |||
250 | // Can be used to manually turn on the screen if it is off | 254 | // Can be used to manually turn on the screen if it is off |
251 | // Returns true if the screen was on or turns on | 255 | // Returns true if the screen was on or turns on |
252 | bool oled_on(void); | 256 | bool oled_on(void); |