aboutsummaryrefslogtreecommitdiff
path: root/keyboards/noxary/268/keymaps/iso/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/noxary/268/keymaps/iso/keymap.c')
-rw-r--r--keyboards/noxary/268/keymaps/iso/keymap.c45
1 files changed, 4 insertions, 41 deletions
diff --git a/keyboards/noxary/268/keymaps/iso/keymap.c b/keyboards/noxary/268/keymaps/iso/keymap.c
index 3d9ca2352..d19084536 100644
--- a/keyboards/noxary/268/keymaps/iso/keymap.c
+++ b/keyboards/noxary/268/keymaps/iso/keymap.c
@@ -52,49 +52,12 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
52 52
53}; 53};
54 54
55
56void matrix_init_user(void) {
57}
58
59void matrix_scan_user(void) {
60}
61
62bool process_record_user(uint16_t keycode, keyrecord_t *record) {
63 return true;
64}
65
66void led_set_user(uint8_t usb_led) { 55void led_set_user(uint8_t usb_led) {
67
68 if (usb_led & (1 << USB_LED_NUM_LOCK)) {
69
70 } else {
71
72 }
73
74 if (usb_led & (1 << USB_LED_CAPS_LOCK)) { 56 if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
75 DDRB |= (1 << 6); 57 setPinOutput(B6);
76 PORTB |= (1 << 6); 58 writePinHigh(B6);
77 } else { 59 } else {
78 DDRB &= ~(1 << 6); 60 setPinInput(B6);
79 PORTB &= ~(1 << 6); 61 writePinLow(B6);
80 } 62 }
81
82 if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
83
84 } else {
85
86 }
87
88 if (usb_led & (1 << USB_LED_COMPOSE)) {
89
90 } else {
91
92 }
93
94 if (usb_led & (1 << USB_LED_KANA)) {
95
96 } else {
97
98 }
99
100} 63}