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

22 lines
259 B
C++

#include <ion/led.h>
namespace Ion {
namespace LED {
KDColor getColor() {
return KDColorBlack;
}
void setColor(KDColor c) {
}
void setBlinking(uint16_t period, float dutyCycle) {
}
KDColor updateColorWithPlugAndCharge() {
return KDColorBlack;
}
}
}