diff options
Diffstat (limited to 'keyboards/palette1202/keymaps/key-check/keymap.c')
-rw-r--r-- | keyboards/palette1202/keymaps/key-check/keymap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/palette1202/keymaps/key-check/keymap.c b/keyboards/palette1202/keymaps/key-check/keymap.c index 207cf1c2b..6291b5f8a 100644 --- a/keyboards/palette1202/keymaps/key-check/keymap.c +++ b/keyboards/palette1202/keymaps/key-check/keymap.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | */ | 15 | */ |
16 | #include QMK_KEYBOARD_H | 16 | #include QMK_KEYBOARD_H |
17 | #ifdef OLED_DRIVER_ENABLE | 17 | #ifdef OLED_ENABLE |
18 | #include <string.h> | 18 | #include <string.h> |
19 | #include "lib/oled_helper.h" | 19 | #include "lib/oled_helper.h" |
20 | #endif | 20 | #endif |
@@ -141,11 +141,11 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
141 | } | 141 | } |
142 | 142 | ||
143 | // OLED Display | 143 | // OLED Display |
144 | #ifdef OLED_DRIVER_ENABLE | 144 | #ifdef OLED_ENABLE |
145 | void oled_task_user(void) { | 145 | void oled_task_user(void) { |
146 | render_row(0, "TEST"); | 146 | render_row(0, "TEST"); |
147 | render_row(1, "test"); | 147 | render_row(1, "test"); |
148 | render_row(2, "TEST"); | 148 | render_row(2, "TEST"); |
149 | render_row(3, "test"); | 149 | render_row(3, "test"); |
150 | } | 150 | } |
151 | #endif // #ifdef OLED_DRIVER_ENABLE | 151 | #endif // #ifdef OLED_ENABLE |