summaryrefslogtreecommitdiffstats
path: root/keyboards/nullbitsco/scramble/scramble.c
diff options
context:
space:
mode:
authorJay Greco <jayv.greco@gmail.com>2023-01-27 00:03:57 -0800
committerGitHub <noreply@github.com>2023-01-27 08:03:57 +0000
commitb3dca4bb36d0c08e8145f6f25649aaf61b513fdd (patch)
treeefa1166c6bae58dc30fd8f2d4157c64a1fbb4837 /keyboards/nullbitsco/scramble/scramble.c
parent6e42b5854902963469a4016abeca48a9df5c1c46 (diff)
Add RP2040 SCRAMBLE v2 (#19489)
Diffstat (limited to 'keyboards/nullbitsco/scramble/scramble.c')
-rw-r--r--keyboards/nullbitsco/scramble/scramble.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/keyboards/nullbitsco/scramble/scramble.c b/keyboards/nullbitsco/scramble/scramble.c
index f9f28d2c31..c8a55e0d48 100644
--- a/keyboards/nullbitsco/scramble/scramble.c
+++ b/keyboards/nullbitsco/scramble/scramble.c
@@ -16,25 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
-
-// place overrides here
-void set_scramble_LED(uint8_t mode) {
- switch(mode) {
- case LED_ON:
- setPinOutput(PIN_LED);
- writePin(PIN_LED, GPIO_STATE_HIGH);
- break;
-
- case LED_DIM:
- setPinInput(PIN_LED);
- break;
-
- case LED_OFF:
- setPinOutput(PIN_LED);
- writePin(PIN_LED, GPIO_STATE_LOW);
- break;
-
- default:
- break;
- }
-}