diff options
author | JayceFayne <13365789+JayceFayne@users.noreply.github.com> | 2021-09-05 18:09:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-05 09:09:20 -0700 |
commit | 767f2c02844acd77c86ea84fb86a1a7f49f379b0 (patch) | |
tree | 70ab6f4a9570c22f71e2a023a9497fe6eabb248a /docs/feature_oled_driver.md | |
parent | 0471429c018b85ebbccfe8c823621235c99458b2 (diff) | |
download | qmk_firmware-767f2c02844acd77c86ea84fb86a1a7f49f379b0.tar.gz qmk_firmware-767f2c02844acd77c86ea84fb86a1a7f49f379b0.zip |
[Core] Add `is_oled_scrolling` (#14305)
Diffstat (limited to 'docs/feature_oled_driver.md')
-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 c97843cfb..49a3f0b3e 100644 --- a/docs/feature_oled_driver.md +++ b/docs/feature_oled_driver.md | |||
@@ -356,6 +356,10 @@ bool oled_scroll_left(void); | |||
356 | // Returns true if the screen was not scrolling or stops scrolling | 356 | // Returns true if the screen was not scrolling or stops scrolling |
357 | bool oled_scroll_off(void); | 357 | bool oled_scroll_off(void); |
358 | 358 | ||
359 | // Returns true if the oled is currently scrolling, false if it is | ||
360 | // not | ||
361 | bool is_oled_scrolling(void); | ||
362 | |||
359 | // Inverts the display | 363 | // Inverts the display |
360 | // Returns true if the screen was or is inverted | 364 | // Returns true if the screen was or is inverted |
361 | bool oled_invert(bool invert); | 365 | bool oled_invert(bool invert); |