
void UpdateLampAttributes(LampAttributesRequestReport *report) noexcept
{
    // 対象となるLampId(0～LampCount-1)の送信。無効なLampIdは0として処理する
    lastLampIdRequested = (report->LampId < LAMP_COUNT) ? report->LampId : 0;
}