Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]Fix up screen off timer of helix #4347

Merged
merged 7 commits into from
Nov 12, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move process_record_kb()
  • Loading branch information
comaid authored and comaid committed Nov 11, 2018
commit 9068d7a3db722b33bec773a3c36000e6a54f02e7
9 changes: 0 additions & 9 deletions keyboards/helix/helix.c
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
#include "helix.h"


#ifdef SSD1306OLED
#include "ssd1306.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
return process_record_gfx(keycode,record) && process_record_user(keycode, record);
}
#endif
6 changes: 6 additions & 0 deletions keyboards/helix/pico/pico.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@


#ifdef SSD1306OLED
#include "ssd1306.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
return process_record_gfx(keycode,record) && process_record_user(keycode, record);
}

void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
//led_set_user(usb_led);
Expand Down
6 changes: 6 additions & 0 deletions keyboards/helix/rev1/rev1.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@


#ifdef SSD1306OLED
#include "ssd1306.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
return process_record_gfx(keycode,record) && process_record_user(keycode, record);
}

void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
led_set_user(usb_led);
Expand Down
6 changes: 6 additions & 0 deletions keyboards/helix/rev2/rev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@


#ifdef SSD1306OLED
#include "ssd1306.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
return process_record_gfx(keycode,record) && process_record_user(keycode, record);
}

void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
//led_set_user(usb_led);
Expand Down