summaryrefslogtreecommitdiff
path: root/keyboards/orange75
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-09-05 20:37:03 +0000
committerQMK Bot <hello@qmk.fm>2021-09-05 20:37:03 +0000
commit147289e173999b132f1b97835f8d57716a2bd376 (patch)
tree8aff70bcbc2bd3bec97a8f46006dab808e9997ca /keyboards/orange75
parent673f82ebd9fb48371d815a1c4f8a5bb3d5d0bfe3 (diff)
parent8d6d8cfadfd1522b3dd2cc8ac1ce7393b45bbe64 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/orange75')
-rw-r--r--keyboards/orange75/keymaps/default/keymap.c31
1 files changed, 13 insertions, 18 deletions
diff --git a/keyboards/orange75/keymaps/default/keymap.c b/keyboards/orange75/keymaps/default/keymap.c
index 37e198f99c..11027ca6ee 100644
--- a/keyboards/orange75/keymaps/default/keymap.c
+++ b/keyboards/orange75/keymaps/default/keymap.c
@@ -52,34 +52,29 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)
};
-
-void matrix_init_user(void) {
-}
-
-void matrix_scan_user(void) {
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
void led_set_user(uint8_t usb_led) {
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
- DDRB |= (1 << 0); PORTB &= ~(1 << 0);
+ setPinOutput(B0);
+ writePinLow(B0);
} else {
- DDRB &= ~(1 << 0); PORTB &= ~(1 << 0);
+ setPinInput(B0);
+ writePinLow(B0);
}
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
- DDRB |= (1 << 1); PORTB &= ~(1 << 1);
+ setPinOutput(B1);
+ writePinLow(B1);
} else {
- DDRB &= ~(1 << 1); PORTB &= ~(1 << 1);
+ setPinInput(B1);
+ writePinLow(B1);
}
if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
- DDRB |= (1 << 2); PORTB &= ~(1 << 2);
+ setPinOutput(B2);
+ writePinLow(B2);
} else {
- DDRB &= ~(1 << 2); PORTB &= ~(1 << 2);
+ setPinInput(B2);
+ writePinLow(B2);
}
-} \ No newline at end of file
+}