function WinLIRC_doSendData($Control, $Button) { $ModuleId = get_CommConfigValue(c_Comm_WinLIRC, c_Property_Instance); IPSLogger_Com(__file__, "Send Data to WinLIRC, Control='$Control', Command='$Button' (Module=$ModuleId)"); if ($ModuleId!==false and $ModuleId<>"") { if (@IRT_SendOnce($ModuleId, $Control, $Button)==false) { IPSLogger_Wrn(__file__, "Unknown IRTrans Message, Control='$Control', Command='$Button' (Module=$ModuleId)"); }; } }
/** * @public * * Ermöglicht das Verarbeiten eines Taster Signals * */ public function ExecuteButton () { IRT_SendOnce($this->instanceId, $this->device, $this->button); }