Reed Swiernik 835207193a Update README.md 10 years ago
..
Makefile 0541af4ff9 Updated makefile to properly handle non extended keymaps 10 years ago
Makefile.pjrc ed8d9a099d added planck folder 11 years ago
README.md 835207193a Update README.md 10 years ago
backlight.c 65680819df Replaced tabs with spaces to match TMK convention. 11 years ago
backlight.h b80b6b369c Added backlight.h, backlight.c 11 years ago
config.h 15b9bce6ba Initial commit for Planck PCB Rev 1. 11 years ago
extended_keymap_common.c 4454ded0af macros 11 years ago
extended_keymap_common.h 4454ded0af macros 11 years ago
extended_keymap_jack.c 4454ded0af macros 11 years ago
keymap_brett.c 0fcb3b65f8 brett 11 years ago
keymap_common.c ed8d9a099d added planck folder 11 years ago
keymap_common.h e9df959c13 Update keymap_nathan.c 11 years ago
keymap_dotcom.c d6f2f878f9 dotcom 11 years ago
keymap_jack.c ceff93844b simon 11 years ago
keymap_joe.c a538f71e41 led oops 11 years ago
keymap_matthew.c 438ff3465e defined KEYMAP_GRID for grid layouts 11 years ago
keymap_nathan.c e9df959c13 Update keymap_nathan.c 11 years ago
keymap_peasant.c 33e2a6285f dotcom 11 years ago
keymap_reed.c b060714efd Changed del key and added docs 10 years ago
keymap_sean.c 4209486b13 Latest custom map with lower + raise 10 years ago
keymap_shane.c 173dbe3b28 Create keymap_shane.c 11 years ago
keymap_simon.c ceff93844b simon 11 years ago
keymap_tim.c 708f95a472 working extended keymap 11 years ago
keymap_wilba.c 65680819df Replaced tabs with spaces to match TMK convention. 11 years ago
led.c 65680819df Replaced tabs with spaces to match TMK convention. 11 years ago
matrix.c 65680819df Replaced tabs with spaces to match TMK convention. 11 years ago
matrix_center.c 708f95a472 working extended keymap 11 years ago
matrix_handwire.c 708f95a472 working extended keymap 11 years ago

README.md

Planck keyboard firmware

DIY/Assembled compact ortholinear 40% keyboard by Ortholinear Keyboards.

Extended Keymap

If you include extended_keymap_common.h instead of keymap_common.h at the top of your file, you'll have access to a bunch of goodies:

  • Use LSFT(), LCTL(), et. al. (listed in extended_keymap_common.h) as modifiers for keys (daisy-chain-able)
  • Use FUNC(1) instead of FN1 (etc.) to access the function layers beyond the 32 function layer limit
  • Use CM_F instead of KC_F to get the ColeMak equivilent for shortcuts (maps backwards)
  • Use MACRODOWN() instead of MACRO() to easily make a keydown macro (CM_* works here too)

Some notes on usage:

  • The KEYMAP() macro is unable to be used due to the bitwise modifications that take place - refer to extended_keymap_jack.c to see how to set things up with the KC_ prefix
  • Keep an eye on the Makefile - this needs to include the correct files to work
  • Don't forget to use const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { instead of the 8bit equivilent

Build

Follow this guide to setup your development environment before anything else. Abbreviated instructions are provide at the bottom of this document

Download the whole firmware here and navigate to the keyboard/planck folder. Once your dev env is setup, you'll be able to type make to generate your .hex that you can load with the Teensy app onto your Planck (once you've hit reset/shorted GND & RST).

Depending on which keymap you would like to use, you will have to compile slightly differently.

####Default To build the default keymap, simply move to the tmk_keyboard/keyboard/planck/ and run make as follows:

$ make

####Extended Keymaps

Extended keymaps need to be specified as follows:

$ make KEYMAP=[common|jack|<name>]

Applicable keymaps should follow the format extended_keymap_name.c

####Common Keymaps

Common keymaps need to be specified as follows:

$ make KEYMAP=[common|jack|<name>] COMMON=true

Applicable keymaps should follow the format keymap_name.c

Keymap

Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create file named keymap_<name>.c and see keymap document (you can find in top README.md) and existent keymap files.

To build firmware binary hex file with a certain keymap just do make with KEYMAP option like:

$ make KEYMAP=[<name>]

Notable TMK forks (which some of the keymap files are from)

Environment Setup