Whether there is a possibility to process system variables given out by the thermostat on the controller паскаль? Today tested a code, on the touch screen works, and on the controller is not present. /// /// /// 2 : begin if GetBoolIBSystemIO("HVAC Zone Group State", 2) then begin SetCBusState("house", "integration", "VRV_K2_OnOff", ON); T_Real:=GetRealIBSystemIO("HVAC Temperature", 2, HVACZoneU); T_Ust:=GetRealIBSystemIO("HVAC Set-Level", 2, HVACZoneU); T_razn:=T_Ust-T_Real; T_blok:=T_Real+(K_ust*T_razn); if T_blok<16 then T_blok:=16; if T_blok>32 then T_blok:=32; SetCBusLevel("house", "integration", "VRV_K2_Temp", round(T_blok), 0); if T_razn<0 then T_razn:=T_razn*(-1); if (T_razn>K_vent) then SetCBusState("house", "integration", "VRV_K2_Fspeed", ON) else SetCBusState("house", "integration", "VRV_K2_Fspeed", OFF); Delay("0:00:02"); T_number:=3; end else begin SetCBusState("house", "integration", "VRV_K2_OnOff", OFF); Delay("0:00:02"); T_number:=3; end; end; /// /// ///