Updating everything to use the new userspace format

This commit is contained in:
2023-11-20 09:48:05 -06:00
parent 3f3579bacc
commit 1b22dc64bb
20 changed files with 258 additions and 286 deletions

20
dgvigil/features/macros.c Normal file
View File

@@ -0,0 +1,20 @@
#include QMK_KEYBOARD_H
#include "macros.h"
process_record_result_t process_macro_keycode(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case M_PASS1:
if (record->event.pressed) {
SEND_STRING("T3lg3Ranch!2023");
}
return false;
case M_PASS2:
if (record->event.pressed) {
SEND_STRING("P0plarLake!2023");
}
return false;
}
return true;
}