Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

actionmap_bilimbi.c 549B

12345678910111213141516171819202122
  1. #include "actionmap.h"
  2. #include "action_code.h"
  3. #include "actionmap_common.h"
  4. /*
  5. * Actions
  6. */
  7. #define AC_BLD ACTION_BACKLIGHT_DECREASE()
  8. #define AC_BLI ACTION_BACKLIGHT_INCREASE()
  9. #define AC_TL1 ACTION_LAYER_TAP_KEY(1, KC_ESC)
  10. const action_t PROGMEM actionmaps[][MATRIX_ROWS][MATRIX_COLS] = {
  11. [0] = ACTIONMAP( \
  12. TL1, PSCR, SLCK, PAUS, \
  13. VOLU, INS, HOME, PGUP, \
  14. VOLD, DEL, END, PGDN),
  15. [1] = ACTIONMAP( \
  16. TRNS, LSFT, RSFT, TRNS, \
  17. TRNS, TRNS, TRNS, TRNS, \
  18. TRNS, TRNS, BLD, BLI),
  19. };