Browse Source

Add missed function implementation

old_master
Kai Ryu 9 years ago
parent
commit
749903477d
1 changed files with 15 additions and 1 deletions
  1. 15
    1
      keyboard/staryu/backlight.c

+ 15
- 1
keyboard/staryu/backlight.c View File

@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <avr/pgmspace.h>
#include "backlight.h"
#include "softpwm_led.h"
#include "keymap_common.h"
#include "action.h"

#ifdef BACKLIGHT_ENABLE

@@ -125,4 +125,18 @@ void softpwm_led_off(uint8_t index)
}
#endif

void action_keyevent(keyevent_t event)
{
if (backlight_mode == 7) {
if (event.pressed) {
softpwm_led_decrease_all(32);
}
}
if (backlight_mode == 8) {
if (event.pressed) {
softpwm_led_increase_all(32);
}
}
}

#endif