diff --git a/fhem/FHEM/10_MQTT2_DEVICE.pm b/fhem/FHEM/10_MQTT2_DEVICE.pm
index d9ce44acf..3dbee6754 100644
--- a/fhem/FHEM/10_MQTT2_DEVICE.pm
+++ b/fhem/FHEM/10_MQTT2_DEVICE.pm
@@ -944,16 +944,17 @@ zigbee2mqtt_devStateIcon255($;$$)
disabledForIntervals
-
getList cmd [topic|perl-Expression] ...
- When the FHEM command cmd is issued, publish the topic, wait for the
- answer (the specified reading), and show it in the user interface.
- Multiple triples can be specified, each of them separated by newline, the
- newline does not have to be entered in the FHEMWEB frontend.
+ getList cmd reading [topic|perl-Expression] ...
+ When the FHEM command cmd is issued, publish the topic (and optional
+ message, which is separated by space from the topic), wait for the answer
+ which must contain the specified reading, and show the result in the user
+ interface.
+ Multiple triples can be specified, each of them separated by newline.
Example:
attr dev getList\
temp temperature myDev/cmd/getstatus\
- hum hum myDev/cmd/getStatus
+ hum humReading myDev/cmd/getHumidity now
This example defines 2 get commands (temp and hum), which both publish
the same topic, but wait for different readings to be set.