Documentation
HM_RequestStatus
boolean HM_RequestStatus (int $InstanceID, string $Parameter)
Parameters
InstanceID | ID of the device to be switched |
||||||||
Parameter |
|
Returns
If the command succeeds, it returns TRUE, otherwise FALSE.
Description
Requests the status variable with the name Parameter of the device with ID InstanceID.
The Parameter value you can derive based on the name of the state variable. In the parameter list some examples are given.
This fuction loads the radio traffic significantly.
It should be used solely to update critical devices to IP Symcon start. A requery of the runtime is not required because the HomeMatic forward all status changes directly to IP Symcon.
For battery powered units, only the stored state of the CCU/ LAN adapter will be required. Line-powered equipment can be queried directly by wireless.
Example
// This requests an update of all parameters for all Homemeatic instances.
// This strains the wireless communication extremely and is not recommanded as general update.
$ids = IPS_GetInstanceListByModuleID("{EE4A81C6-5C90-4DB7-AD2F-F6BBD521412E}");
echo "Geräte: ".sizeof($ids)."\n";
foreach($ids as $id)
{
$svs=IPS_GetStatusVariableIdents($id);
if(sizeof($svs) > 0) {
if(@HM_RequestStatus($id, $svs[0]) === false) {
echo "Fehler: ".IPS_GetLocation($id)."\n";
}
}
}