Files
Upsilon/ion/include/ion/backlight.h
Émilie Feral c2b6777b58 [apps] Extinction and backlight timers
Change-Id: I91daf6ab78fff9ec4bc924915a17a559f9ddfa63
2017-04-25 11:00:04 +02:00

17 lines
214 B
C++

#ifndef ION_BACKLIGHT_H
#define ION_BACKLIGHT_H
#include <stdint.h>
namespace Ion {
namespace Backlight {
constexpr uint8_t MaxBrightness = 240;
void setBrightness(uint8_t b);
uint8_t brightness();
}
}
#endif