From 0aa1c1bbbcb18594e06397a26faecb24c13df582 Mon Sep 17 00:00:00 2001 From: StefanStrobel <> Date: Sat, 30 Jan 2021 14:45:11 +0000 Subject: [PATCH] 98_HTTPMOD: added documentation for FollowGet git-svn-id: https://svn.fhem.de/fhem/trunk@23642 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_HTTPMOD.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fhem/FHEM/98_HTTPMOD.pm b/fhem/FHEM/98_HTTPMOD.pm index c4106fef3..fbd61ea55 100755 --- a/fhem/FHEM/98_HTTPMOD.pm +++ b/fhem/FHEM/98_HTTPMOD.pm @@ -3437,6 +3437,11 @@ sub AddToSendQueue { also been set. Every time the update function is called, it checks if since this get has been read the last time, the defined delay has elapsed. If not, then it is skipped this time.
PollDelay can be specified as seconds or as x[0-9]+ which means a multiple of the interval in the define command.
+
  • (get|set)[0-9]*FollowGet
  • + allows to chain a get command after another set or get command.
    + If for example you want to set a new required temerature with a set 'TargetTemp' command and this set command changes the temperature with a series + of HTTP requests in your heating system, then you can automaticaly do a get 'TargetTemp' to read out the new value from your heating.
    + The value of this attribute must match a defined get command name.
  • (get|set)[0-9]*TextArg
  • For a get command this defines that the command accepts a text value after the option name.