Files
firmware/right/src/led_display.h
Gergely Nagy a59dcd1662 Lift out the LED brightness into a global
Instead of passing the same constant to LedDisplay_SetLayerLed() all the time,
lift it out into a global.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-12-13 23:23:16 +01:00

11 lines
182 B
C

#ifndef __LED_DISPLAY_H__
#define __LED_DISPLAY_H__
#include "led_driver.h"
extern uint8_t LedDisplayBrightness;
void LedDisplay_SetLayerLed(uint8_t layerId);
#endif