Firmware: TelemetryDispatcher with Hello World IN to HID

This commit is contained in:
2025-12-28 17:01:50 -03:00
parent ba3e768957
commit dec9237bf7
3 changed files with 5 additions and 2 deletions

View File

@@ -29,6 +29,9 @@ int32_t TelemetryDispatcher::init() {
int32_t TelemetryDispatcher::execute() {
log(Log::Level::Informational, "Started execution");
while(true){
pHid->take(100);
pHid->enqueueInPacket(reinterpret_cast<const uint8_t*>("\x01Hello World\n"), 14);
pHid->give();
vTaskDelay(1);
}
return 0;