summaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/sixshooter/sixshooter.h
diff options
context:
space:
mode:
authora_p_u_r_o <applause@elfmimi.jp>2020-02-11 10:22:37 +0900
committerGitHub <noreply@github.com>2020-02-10 17:22:37 -0800
commit4b7d46ced0ba6e97bc8100d91bd2466db947d7b3 (patch)
treedec6df82d8f9d76e7a2e96593d6fece3ffb4a9fd /keyboards/bpiphany/sixshooter/sixshooter.h
parentcabe4dfa72ce0ec24e7991e90977d27e97e5a95d (diff)
[Keyboard] Use DIRECT_PINS instead of empty MATRIX_ROW_PINS: sixshooter (#8130)
* [Keyboard] Use DIRECT_PINS instead of empty MATRIX_ROW_PINS: sixshooter * [Keyboard] Reform the matrix into 2x3: sixshooter
Diffstat (limited to 'keyboards/bpiphany/sixshooter/sixshooter.h')
-rw-r--r--keyboards/bpiphany/sixshooter/sixshooter.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/keyboards/bpiphany/sixshooter/sixshooter.h b/keyboards/bpiphany/sixshooter/sixshooter.h
index 490d562d06..e8fc68f5c9 100644
--- a/keyboards/bpiphany/sixshooter/sixshooter.h
+++ b/keyboards/bpiphany/sixshooter/sixshooter.h
@@ -4,10 +4,12 @@
#include "quantum.h"
#define LAYOUT( \
- K00, K01, K02, \
- K03, K04, K05 \
-) { \
- { K00, K01, K02, K03, K04, K05 }, \
+ K00, K01, K02, \
+ K03, K04, K05 \
+) \
+{ \
+ { K00, K01, K02 }, \
+ { K03, K04, K05 } \
}
inline void sixshooter_led_0_on(void) { DDRB |= (1<<6); PORTB |= (1<<6); }