You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
419 B

FUNCTION IJ_DT : BOOL
VAR_INPUT
dt_up :BOOL;
dt_down :BOOL;
END_VAR
VAR
END_VAR
(*
时 间:20200701
版 本:1.0
作 者:戴锦豪
名 称:电梯状态监测
说 明:电梯上、下行,输出运行状态
备 注:
依赖块:无
*)
(*
Input_Type: 输入
dt_up :上行
dt_down:下行
Output_Type 输出
dt_r :运行
*)
BS_DT:=dt_up or dt_down;
END_FUNCTION