wsled interface skeleton

This commit is contained in:
2026-02-13 12:29:59 -06:00
parent 9f884b41e7
commit 4f333435ea
2 changed files with 59 additions and 0 deletions

21
src/WsledInterface.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include "WsledInterface.hpp"
WsledInterface::WsledInterface(const wsled_t* device) {
}
STATUS WsledInterface::writePixel(CRGB pixel, size_t index) {
return OKAY;
}
STATUS WsledInterface::get(CRGB* pixel, size_t index) {
return OKAY;
}
STATUS WsledInterface::flush() {
return OKAY;
}