Automatically create matrix

This commit is contained in:
Werner Sembach
2025-06-03 17:36:01 +02:00
committed by Adam Honse
parent 0bbec4dde9
commit 39055f205c
3 changed files with 36 additions and 3 deletions

View File

@@ -64,6 +64,11 @@ unsigned int HIDLampArrayController::GetLampCount()
return(LampArray.LampCount);
}
std::vector<LampAttributes> HIDLampArrayController::GetLamps()
{
return(Lamps);
}
void HIDLampArrayController::GetLampArrayAttributesReport()
{
unsigned char usb_buf[sizeof(LampArrayAttributes) + 1];