summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-11-22 01:58:24 +0100
committerGitHub <noreply@github.com>2016-11-22 01:58:24 +0100
commite0fc186c28974bc0c921774e359d134eab258f73 (patch)
treebd4d93564cba1a7844db052bdcf1e43a0c80eea5 /keyboards
parentea472fb018b0362aa6e4f9f368fc7b1e09c1021d (diff)
parent102a830bbdb302eb0951ec7910ab7c9feae272d1 (diff)
downloadqmk_firmware-e0fc186c28974bc0c921774e359d134eab258f73.tar.gz
qmk_firmware-e0fc186c28974bc0c921774e359d134eab258f73.tar.xz
Merge pull request #888 from climbalima/master
Added pro micro to maxipad
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/maxipad/config.h12
-rw-r--r--keyboards/maxipad/readme.md2
-rw-r--r--keyboards/maxipad/rules.mk2
3 files changed, 12 insertions, 4 deletions
diff --git a/keyboards/maxipad/config.h b/keyboards/maxipad/config.h
index fbe64a5b0..fc5ab7761 100644
--- a/keyboards/maxipad/config.h
+++ b/keyboards/maxipad/config.h
@@ -43,9 +43,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
*
*/
-#define MATRIX_ROW_PINS { B6, F7, B2, B3, B1 }
-#define MATRIX_COL_PINS { F6, C6, D7, F5, B4, B5 }
-#define UNUSED_PINS
+//Pro micro pinout
+ #define MATRIX_ROW_PINS { B6, B2, B3, B1, F7 }
+ #define MATRIX_COL_PINS { F4, C6, D7, F5, B4, B5 }
+ #define UNUSED_PINS
+//Teensy 2 pinout
+ //#define MATRIX_ROW_PINS { B6, F7, B2, B3, B1 }
+ //#define MATRIX_COL_PINS { F6, C6, D7, F5, B4, B5 }
+ //#define UNUSED_PINS
+
/* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW
diff --git a/keyboards/maxipad/readme.md b/keyboards/maxipad/readme.md
index ab7b122fe..de2265d11 100644
--- a/keyboards/maxipad/readme.md
+++ b/keyboards/maxipad/readme.md
@@ -5,6 +5,8 @@ For the full Quantum feature list, see [the parent readme](/).
## Building
+Change the config.h pinout to match your mcu!!
+
Download or clone the whole firmware and navigate to the keyboards/maxipad folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
Depending on which keymap you would like to use, you will have to compile slightly differently.
diff --git a/keyboards/maxipad/rules.mk b/keyboards/maxipad/rules.mk
index 55898147d..56b2042ef 100644
--- a/keyboards/maxipad/rules.mk
+++ b/keyboards/maxipad/rules.mk
@@ -64,4 +64,4 @@ BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by
MIDI_ENABLE ?= no # MIDI controls
UNICODE_ENABLE ?= no # Unicode
BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID
-AUDIO_ENABLE ?= no # Audio output on port C6
+AUDIO_ENABLE ?= no # Audio output on port C6 \ No newline at end of file