summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-10-29 18:12:50 +1100
committerDrashna Jael're <drashna@live.com>2021-01-12 22:43:33 -0800
commit7812b1df57abaaff8b297457eab61fdeb6bfc5b0 (patch)
treeee129700b2ce336ac8bd14c022a5c461b5d896eb /keyboards
parent0928d032137883e471c1889e42fa97d716b9cc62 (diff)
Add brightness level API to OLED driver (#10772)
* Add brightness level API to OLED driver * Set default brightness to 255
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/handwired/onekey/keymaps/pytest_nocpp/keymap.c23
-rw-r--r--keyboards/handwired/onekey/pytest/templates/keymap.json3
2 files changed, 0 insertions, 26 deletions
diff --git a/keyboards/handwired/onekey/keymaps/pytest_nocpp/keymap.c b/keyboards/handwired/onekey/keymaps/pytest_nocpp/keymap.c
deleted file mode 100644
index 4e06bb11ec..0000000000
--- a/keyboards/handwired/onekey/keymaps/pytest_nocpp/keymap.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include QMK_KEYBOARD_H
-#include "audio.h"
-
-/* THIS FILE WAS GENERATED AND IS EXPERIMENTAL!
- *
- * This file was generated by qmk-compile-json. You may or may not want to
- * edit it directly.
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [0] = LAYOUT(KC_ENTER)
-};
-
-void encoder_update_user(uint8_t index, bool clockwise) {
- if (index == 0) {
- if (clockwise) {
- tap_code(KC_UP);
- } else {
- tap_code(KC_DOWN);
- }
- }
-
-};
diff --git a/keyboards/handwired/onekey/pytest/templates/keymap.json b/keyboards/handwired/onekey/pytest/templates/keymap.json
deleted file mode 100644
index 35344388f6..0000000000
--- a/keyboards/handwired/onekey/pytest/templates/keymap.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "documentation": "This file is a keymap.json file for handwired/onekey/pytest"
-}