1
0
Fork 0

Fix onekey console keymap (#13797)

This commit is contained in:
Ryan 2021-07-31 07:00:14 +10:00 committed by GitHub
parent aece9ad5fa
commit 7bfe53ee2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case KC_HELLO:
if (record->event.pressed) {
printf("Hello world!\n");
println("Hello world!");
}
return false;
}