aqhome-mqttlog: Implemented SETDATA.

This commit is contained in:
Martin Preuss
2024-02-17 01:09:46 +01:00
parent 0cf3976fc7
commit 1ba263fb13
11 changed files with 235 additions and 21 deletions

View File

@@ -112,6 +112,17 @@ void AqHomeMqtt_SetAvailableDeviceList(AQHOME_MQTT *aqh, AQHMQTT_DEVICE_LIST *dl
AQHMQTT_DEVICE *AqHomeMqtt_FindRegisteredDevice(AQHOME_MQTT *aqh, const char *wantedDeviceId)
{
if (aqh && aqh->registeredDeviceList)
return AQHMQTT_Device_List_GetById(aqh->registeredDeviceList, wantedDeviceId);
return NULL;
}