Из-за этого что-ли митинг?
Код:
function_block CustomBlock
var_input
I1, I2, I3 : bool;
end_var
var_output
Q1, Q2, Q3 : bool;
end_var
if not I1 and not I2 and not I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif I1 and not I2 and not I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif not I1 and I2 and not I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif I1 and I2 and not I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif not I1 and not I2 and I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif I1 and not I2 and I3 then
Q1 := false; Q2 := false; Q3 := false;
elsif not I1 and I2 and I3 then
Q1 := false; Q2 := false; Q3 := false;
else
Q1 := false; Q2 := false; Q3 := false;
end_if
end_function_block
Код:
function_block CustomElement
var_input
I1, I2, I3 : bool;
end_var
var_output
Q1, Q2, Q3 : bool;
end_var
var
dim : array [0..7] of udint := [ 0, 0, 0, 0, 0, 0, 0, 0 ] ;
i, q : udint;
end_var
i.0 := I1; i.1 := I2; i.2 := I3;
q := dim[i];
Q1 := q.0; Q2 := q.1; Q3 := q.2;
end_function_block