diff options
author | Barabas <barabas.raffai@gmail.com> | 2021-05-08 11:27:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 12:27:13 +0200 |
commit | fca7cc1747642d077898e301945df86bfdea0784 (patch) | |
tree | 627ca5164421d41ee21698ec803767ef826c56d2 /docs | |
parent | 992b146bc4d761d2ff81222b7c750caded640711 (diff) |
Added OLED fade out support (#12086)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_oled_driver.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/feature_oled_driver.md b/docs/feature_oled_driver.md index 44202487f1..d2dc6103a6 100644 --- a/docs/feature_oled_driver.md +++ b/docs/feature_oled_driver.md @@ -145,6 +145,8 @@ void oled_task_user(void) { |`OLED_FONT_WIDTH` |`6` |The font width | |`OLED_FONT_HEIGHT` |`8` |The font height (untested) | |`OLED_TIMEOUT` |`60000` |Turns off the OLED screen after 60000ms of keyboard inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. | +|`OLED_FADE_OUT` |*Not defined* |Enables fade out animation. Use together with `OLED_TIMEOUT`. | +|`OLED_FADE_OUT_INTERVAL` |`0` |The speed of fade out animation, from 0 to 15. Larger values are slower. | |`OLED_SCROLL_TIMEOUT` |`0` |Scrolls the OLED screen after 0ms of OLED inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. | |`OLED_SCROLL_TIMEOUT_RIGHT`|*Not defined* |Scroll timeout direction is right when defined, left when undefined. | |`OLED_IC` |`OLED_IC_SSD1306`|Set to `OLED_IC_SH1106` if you're using the SH1106 OLED controller. | |