summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorDanny <nooges@users.noreply.github.com>2018-09-21 00:37:18 +0200
committerDrashna Jaelre <drashna@live.com>2018-09-21 00:37:18 +0200
commit747cf78b5da17969fe057d77512e276fa6c59fd9 (patch)
treea7f83b8fa09b177f02bbc7459362766d0828f03a /keyboards
parent99c1c5bfe933865bacdebdcbcfa55954a5a946a2 (diff)
downloadqmk_firmware-747cf78b5da17969fe057d77512e276fa6c59fd9.tar.gz
qmk_firmware-747cf78b5da17969fe057d77512e276fa6c59fd9.tar.xz
Add nano keymap for modding Spooka light (#3953)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/nano/config.h5
-rw-r--r--keyboards/nano/keymaps/default/rules.mk3
-rw-r--r--keyboards/nano/keymaps/spooka/config.h25
-rw-r--r--keyboards/nano/keymaps/spooka/keymap.c12
-rw-r--r--keyboards/nano/keymaps/spooka/rules.mk1
5 files changed, 39 insertions, 7 deletions
diff --git a/keyboards/nano/config.h b/keyboards/nano/config.h
index 5c4f920df..088fafcaa 100644
--- a/keyboards/nano/config.h
+++ b/keyboards/nano/config.h
@@ -33,12 +33,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_COLS 4
/* ws2812 RGB LED */
-#define RGB_DI_PIN B1
-#define RGBLIGHT_TIMER
+#define RGB_DI_PIN D3
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 6 // Number of LEDs
-#define ws2812_PORTREG PORTD
-#define ws2812_DDRREG DDRD
/* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW
diff --git a/keyboards/nano/keymaps/default/rules.mk b/keyboards/nano/keymaps/default/rules.mk
index 457a3d01d..e69de29bb 100644
--- a/keyboards/nano/keymaps/default/rules.mk
+++ b/keyboards/nano/keymaps/default/rules.mk
@@ -1,3 +0,0 @@
-ifndef QUANTUM_DIR
- include ../../../../Makefile
-endif
diff --git a/keyboards/nano/keymaps/spooka/config.h b/keyboards/nano/keymaps/spooka/config.h
new file mode 100644
index 000000000..05900a215
--- /dev/null
+++ b/keyboards/nano/keymaps/spooka/config.h
@@ -0,0 +1,25 @@
+/*
+Copyright 2018 Danny Nguyen <danny@keeb.io>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#undef RGBLED_NUM
+#define RGBLIGHT_ANIMATIONS
+#define RGBLED_NUM 12
+#define RGBLIGHT_HUE_STEP 8
+#define RGBLIGHT_SAT_STEP 8
+#define RGBLIGHT_VAL_STEP 8
diff --git a/keyboards/nano/keymaps/spooka/keymap.c b/keyboards/nano/keymaps/spooka/keymap.c
new file mode 100644
index 000000000..63b90da09
--- /dev/null
+++ b/keyboards/nano/keymaps/spooka/keymap.c
@@ -0,0 +1,12 @@
+#include QMK_KEYBOARD_H
+
+#define _MAIN 0
+
+#define _______ KC_TRNS
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [_MAIN] = LAYOUT(
+ RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI,
+ RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD
+ )
+};
diff --git a/keyboards/nano/keymaps/spooka/rules.mk b/keyboards/nano/keymaps/spooka/rules.mk
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/keyboards/nano/keymaps/spooka/rules.mk
@@ -0,0 +1 @@
+