Skip to content
Snippets Groups Projects
Commit 52551df3 authored by Sigrid Haflínudóttir's avatar Sigrid Haflínudóttir :peach:
Browse files

keyboard-fw: fix wrong command for OLED clearing

parent 137b2740
Branches kbd-fw-oled-clear
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ void hid_report_cmd(uint8_t* data) {
else if (command == CMD_OLED_BITMAP) {
matrix_render_direct(data+4);
}
else if (command == CMD_OLED_BITMAP) {
else if (command == CMD_OLED_CLEAR) {
gfx_clear();
gfx_flush();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment