Skip to content

Commit

Permalink
Merge pull request qmk#4 from mechkeys/feature/WDT
Browse files Browse the repository at this point in the history
Feature/wdt
  • Loading branch information
scott-t-wilson authored Apr 2, 2017
2 parents fb238c3 + 3001308 commit 9d7d3eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions keyboards/lfk78/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define RGBLIGHT_SAT_STEP 17
#define RGBLIGHT_VAL_STEP 17

#define CLICK_HZ 500
#define CLICK_MS 2
#define CLICK_ENABLED 0

#define TAPPING_TERM 200

/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
Expand Down
3 changes: 3 additions & 0 deletions keyboards/lfk78/lfk78.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
#endif

#define CLICK_HZ 500
#define CLICK_MS 2
#define CLICK_ENABLED 0

typedef struct RGB_Color {
uint16_t red;
Expand Down
2 changes: 1 addition & 1 deletion keyboards/lfk78/lighting.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void led_test(){
set_underglow(0, 0, 0);
force_issi_refresh();
set_underglow(0, 0, 0);
for(uint8_t x = 1; x < sizeof(rgb_sequence); x++){
for(uint8_t x = 0; x < sizeof(rgb_sequence); x++){
set_rgb(rgb_sequence[x], 255, 0, 0);
force_issi_refresh();
_delay_ms(250);
Expand Down

0 comments on commit 9d7d3eb

Please sign in to comment.