Browse Source

Add sleep LED test command

led_matrix
tmk 11 years ago
parent
commit
ac509aa079
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      common/command.c

+ 8
- 0
common/command.c View File

#include "bootloader.h" #include "bootloader.h"
#include "layer_switch.h" #include "layer_switch.h"
#include "eeconfig.h" #include "eeconfig.h"
#include "sleep_led.h"
#include "led.h"
#include "command.h" #include "command.h"


#ifdef MOUSEKEY_ENABLE #ifdef MOUSEKEY_ENABLE
{ {
static host_driver_t *host_driver = 0; static host_driver_t *host_driver = 0;
switch (code) { switch (code) {
case KC_Z:
// test breathing sleep LED
print("Sleep LED test\n");
sleep_led_toggle();
led_set(host_keyboard_leds());
break;
#ifdef BOOTMAGIC_ENABLE #ifdef BOOTMAGIC_ENABLE
case KC_E: case KC_E:
print("eeprom config\n"); print("eeprom config\n");