uint16_t SendLampArrayAttributesReport(LampArrayAttributesReport *report)
{
    // 物理情報を返す
    report->LampCount = LAMP_COUNT;
    report->BoundingBoxWidthInMicrometers = MILLIMETERS_TO_MICROMETERS(BOUND_WIDTH_MM);
    report->BoundingBoxHeightInMicrometers = MILLIMETERS_TO_MICROMETERS(BOUND_HEIGHT_MM);
    report->BoundingBoxDepthInMicrometers = MILLIMETERS_TO_MICROMETERS(BOUND_DEPTH_MM);
    report->LampArrayKind = LampArrayKindPeripheral;
    report->MinUpdateIntervalInMicroseconds = MILLISECONDS_TO_MICROSECONDS(33);

    return sizeof(LampArrayAttributesReport);
}