Jack Humbert a33ec2f504 updated readme hace 10 años
..
Makefile 708f95a472 working extended keymap hace 10 años
Makefile.pjrc ed8d9a099d added planck folder hace 11 años
README.md a33ec2f504 updated readme hace 10 años
backlight.c 65680819df Replaced tabs with spaces to match TMK convention. hace 10 años
backlight.h b80b6b369c Added backlight.h, backlight.c hace 10 años
config.h 15b9bce6ba Initial commit for Planck PCB Rev 1. hace 10 años
extended_keymap_common.c 3d286a813e colemak shortcuts hace 10 años
extended_keymap_common.h 3d286a813e colemak shortcuts hace 10 años
extended_keymap_jack.c 3d286a813e colemak shortcuts hace 10 años
keymap_brett.c 0fcb3b65f8 brett hace 11 años
keymap_common.c ed8d9a099d added planck folder hace 11 años
keymap_common.h e9df959c13 Update keymap_nathan.c hace 10 años
keymap_dotcom.c d6f2f878f9 dotcom hace 11 años
keymap_jack.c ceff93844b simon hace 11 años
keymap_joe.c a538f71e41 led oops hace 11 años
keymap_matthew.c 438ff3465e defined KEYMAP_GRID for grid layouts hace 11 años
keymap_nathan.c e9df959c13 Update keymap_nathan.c hace 10 años
keymap_peasant.c 33e2a6285f dotcom hace 11 años
keymap_sean.c 4a3c0839f9 sean hace 11 años
keymap_shane.c 173dbe3b28 Create keymap_shane.c hace 11 años
keymap_simon.c ceff93844b simon hace 11 años
keymap_tim.c 708f95a472 working extended keymap hace 10 años
keymap_wilba.c 65680819df Replaced tabs with spaces to match TMK convention. hace 10 años
led.c 65680819df Replaced tabs with spaces to match TMK convention. hace 10 años
matrix.c 65680819df Replaced tabs with spaces to match TMK convention. hace 10 años
matrix_center.c 708f95a472 working extended keymap hace 10 años
matrix_handwire.c 708f95a472 working extended keymap hace 10 años

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)

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.

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).

Move to this directory then just run make like:

$ make

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)