mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
22 lines
259 B
C++
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;
|
|
}
|
|
|
|
}
|
|
}
|