mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 23:00:45 +01:00
17 lines
214 B
C++
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
|