aboutsummaryrefslogtreecommitdiff
path: root/keyboards/palette1202/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorXelus22 <17491233+Xelus22@users.noreply.github.com>2021-08-24 16:28:26 +1000
committerGitHub <noreply@github.com>2021-08-24 16:28:26 +1000
commit4e1c5887c5c08ebd2cf7868c8d9292aa728e7bf0 (patch)
tree24ff5bdf570a6a9f5a77a517005bffbb35e46b22 /keyboards/palette1202/keymaps/default/keymap.c
parent6fd20acf4be76e7a2bd82d3dfd0a9bcca8c507eb (diff)
downloadqmk_firmware-4e1c5887c5c08ebd2cf7868c8d9292aa728e7bf0.tar.gz
qmk_firmware-4e1c5887c5c08ebd2cf7868c8d9292aa728e7bf0.zip
[Core] Refactor OLED to allow easy addition of other types (#13454)
* add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
Diffstat (limited to 'keyboards/palette1202/keymaps/default/keymap.c')
-rw-r--r--keyboards/palette1202/keymaps/default/keymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/palette1202/keymaps/default/keymap.c b/keyboards/palette1202/keymaps/default/keymap.c
index b55b39a40..fb28dedbe 100644
--- a/keyboards/palette1202/keymaps/default/keymap.c
+++ b/keyboards/palette1202/keymaps/default/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
@@ -273,7 +273,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
273} 273}
274 274
275// OLED Display 275// OLED Display
276#ifdef OLED_DRIVER_ENABLE 276#ifdef OLED_ENABLE
277void oled_task_user(void) { 277void oled_task_user(void) {
278 // get layer Number 278 // get layer Number
279 uint8_t currentDefault = get_highest_layer(default_layer_state); 279 uint8_t currentDefault = get_highest_layer(default_layer_state);
@@ -327,4 +327,4 @@ void oled_task_user(void) {
327 render_row(3, " "); 327 render_row(3, " ");
328 } 328 }
329} 329}
330#endif // #ifdef OLED_DRIVER_ENABLE 330#endif // #ifdef OLED_ENABLE