summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPablo Martínez <58857054+elpekenin@users.noreply.github.com>2022-11-30 18:48:23 +0100
committerGitHub <noreply@github.com>2022-11-30 17:48:23 +0000
commita5c2eea6c16696773796b3c1df678c9cf20900b1 (patch)
tree5883c4a7269cc9fdc678845450805091e2b8064e /docs
parent5ff7f289f28e2b10b8d89d83fb0aee13080dae25 (diff)
Update OLED doc (#19213)
* Update OLED doc * Update docs/feature_oled_driver.md Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_oled_driver.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/feature_oled_driver.md b/docs/feature_oled_driver.md
index b7451f17df..dea9cb8074 100644
--- a/docs/feature_oled_driver.md
+++ b/docs/feature_oled_driver.md
@@ -80,6 +80,11 @@ static void render_logo(void) {
oled_write_P(qmk_logo, false);
}
+
+bool oled_task_user(void) {
+ render_logo();
+ return false;
+}
```
?> The default font file is located at `drivers/oled/glcdfont.c` and its location can be overwritten with the `OLED_FONT_H` configuration option. Font file content can be edited with external tools such as [Helix Font Editor](https://helixfonteditor.netlify.app/) and [Logo Editor](https://joric.github.io/qle/).