mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-28 01:59:59 +01:00
25 lines
223 B
C++
25 lines
223 B
C++
#include <ion/backlight.h>
|
|
|
|
namespace Ion {
|
|
namespace Backlight {
|
|
|
|
uint8_t brightness() {
|
|
return 0;
|
|
}
|
|
|
|
void setBrightness(uint8_t b) {
|
|
}
|
|
|
|
void init() {
|
|
}
|
|
|
|
bool isInitialized() {
|
|
return true;
|
|
}
|
|
|
|
void shutdown() {
|
|
}
|
|
|
|
}
|
|
}
|