瀏覽代碼

Add missed function implementation

old_master
Kai Ryu 9 年之前
父節點
當前提交
749903477d
共有 1 個檔案被更改,包括 15 行新增1 行删除
  1. 15
    1
      keyboard/staryu/backlight.c

+ 15
- 1
keyboard/staryu/backlight.c 查看文件

@@ -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