1
0
Fork 0

Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
Drashna Jael're 2021-11-19 09:48:23 -08:00
commit 4be9919e9f
Signed by: drashna
GPG key ID: DBA1FD3A860D1B11
55 changed files with 1928 additions and 174 deletions

View file

@ -15,6 +15,20 @@
*/
#include "puca.h"
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
if (!process_record_user(keycode, record)) {
return false;
}
switch (keycode) {
case MC_00:
if (record->event.pressed) {
SEND_STRING("00");
}
break;
}
return true;
}
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (clockwise) {