Files
Upsilon/ion/src/shared/dummy/backlight.cpp
2021-03-03 15:37:47 +01:00

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() {
}
}
}