@AterMentis said in Advanced combination script (OneWire+DHT+Relays) over serial usb to Pi runnung domoticz - HELP with timing and group ID:
// Register all sensors to gw (they will be created as child devices)
present(CHILD_ID_TEMP1, S_TEMP);
present(CHILD_ID_HUM1, S_HUM);
present(CHILD_ID_TEMP2, S_TEMP);
present(CHILD_ID_HUM2, S_HUM);
present(CHILD_ID_TEMP3, S_TEMP);
present(CHILD_ID_HUM3, S_HUM);
Did you find a solution ?
On other topic you can find a posible solution:
Change order of reporting/presenting devices:
// Register all sensors to gw (they will be created as child devices)
present(CHILD_ID_TEMP1, S_TEMP);
present(CHILD_ID_TEMP2, S_TEMP);
present(CHILD_ID_TEMP3, S_TEMP);
present(CHILD_ID_HUM1, S_HUM);
present(CHILD_ID_HUM2, S_HUM);
present(CHILD_ID_HUM3, S_HUM);