Automatically create matrix

This commit is contained in:
Werner Sembach
2025-06-03 17:36:01 +02:00
committed by Adam Honse
parent 6389ee9ffd
commit e8f52bc6b0
3 changed files with 53 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];