Browse Source

Four Banger: Clean Up Indentation (#4322)

Make indentation consistent and match project standards
pull/4328/head
Alex Mayer 5 years ago
committed by Drashna Jaelre
parent
commit
6eb7501eb0
3 changed files with 19 additions and 19 deletions
  1. +1
    -1
      keyboards/four_banger/config.h
  2. +5
    -5
      keyboards/four_banger/four_banger.h
  3. +13
    -13
      keyboards/four_banger/keymaps/default/keymap.c

+ 1
- 1
keyboards/four_banger/config.h View File

@ -40,7 +40,7 @@
/* key combination for command */
#define IS_COMMAND() ( \
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
)
#define RGB_DI_PIN E6


+ 5
- 5
keyboards/four_banger/four_banger.h View File

@ -4,11 +4,11 @@
#include "quantum.h"
#define LAYOUT_ortho_2x2( \
K00, K01, \
K10, K11 \
K00, K01, \
K10, K11 \
) { \
{ K00, K01 }, \
{ K10, K11 } \
{ K00, K01 }, \
{ K10, K11 } \
}
#endif
#endif

+ 13
- 13
keyboards/four_banger/keymaps/default/keymap.c View File

@ -5,20 +5,20 @@ enum custom_keycodes {
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
LAYOUT_ortho_2x2(
KC_1, KC_U,
KC_P, UP_URL
),
LAYOUT_ortho_2x2(
KC_1, KC_U,
KC_P, UP_URL
),
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case UP_URL:
if (record->event.pressed) {
SEND_STRING("http://1upkeyboards.com");
}
return false;
break;
}
return true;
switch (keycode) {
case UP_URL:
if (record->event.pressed) {
SEND_STRING("http://1upkeyboards.com");
}
return false;
break;
}
return true;
}

Loading…
Cancel
Save