diff options
author | npoirey <nicolas.poirey@gmail.com> | 2017-06-23 21:35:33 +0200 |
---|---|---|
committer | npoirey <nicolas.poirey@gmail.com> | 2017-06-23 21:35:33 +0200 |
commit | a3f151b8e9dc93850fa6eba45d55f35f309b848f (patch) | |
tree | 24d447c54f73dd3f40eed157439582e651391bd2 /keyboards/handwired/frenchdev/matrix.c | |
parent | de80e2c756508fbd14562ece23b0cbdfbb959e1f (diff) | |
download | qmk_firmware-a3f151b8e9dc93850fa6eba45d55f35f309b848f.tar.gz |
Refactoring frenchdev
Diffstat (limited to 'keyboards/handwired/frenchdev/matrix.c')
-rw-r--r-- | keyboards/handwired/frenchdev/matrix.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/keyboards/handwired/frenchdev/matrix.c b/keyboards/handwired/frenchdev/matrix.c index df2b8e8b0..7fe3d0bbf 100644 --- a/keyboards/handwired/frenchdev/matrix.c +++ b/keyboards/handwired/frenchdev/matrix.c @@ -1,15 +1,17 @@ /* +Note to self: adapted from ergodox EZ matrix +The "column" and "row" in here actually refers to the opposite on the keyboard +see definition of KEYMAP in v1.h, the grid is transposed so that a "row" in here is actually a "column" on the physical keyboard +Nicolas + Note for ErgoDox EZ customizers: Here be dragons! This is not a file you want to be messing with. All of the interesting stuff for you is under keymaps/ :) Love, Erez -Note to self, the "column" and "row" in here actually refers to the opposite on the keyboard -see definition of KEYMAP in v1.h, the grid is transposed so that a "row" in here is actually a "column" on the physical keyboard -Nicolas - Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com> +Copyright 2013 Nicolas Poirey <nicolas.poirey@gmail.com> 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 @@ -164,7 +166,7 @@ uint8_t matrix_scan(void) print("left side not responding\n"); } else { print("left side attached\n"); - ergodox_blink_all_leds(); + frenchdev_blink_all_leds(); } } } |