FP_MEWNET_F_GET_NUMBER_OF_IO_POINTS

Read MEWNET-F number of I/O points

This FP instruction reads the number of I/O points of the MEWNET-F unit in the slot number specified by s_Slot.

Input

s_Slot (ANY16)

Slot number of expansion unit

Output

d_NumberOfPoints (ANY16)

Number of I/O points

Example

POU header

All input and output variables used for programming this function have been declared in the POU header.The same POU header is used for all programming languages.

	VAR
		bEnable: BOOL:=FALSE;
		iSlot: INT:=0;
		iNumberOfPoints: INT:=0;
	END_VAR

LD body

When the variable bEnable is set to TRUE, the function is executed.

BODY
    WORKSPACE
        NETWORK_LIST_TYPE := NWTYPELD ;
    END_WORKSPACE
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 7 ;
        NETWORK_BODY
B(B_CONTACT,,bEnable,4,3,6,5,);
B(B_F,FP_MEWNET_F_GET_NUMBER_OF_IO_POINTS!,,15,2,36,6,,?DEN?Ds_Slot?AENO?Cd_NumberOfPoints);
B(B_VARIN,,iSlot,13,4,15,6,);
B(B_VAROUT,,iNumberOfPoints,36,4,38,6,);
L(1,0,1,7);
L(1,4,4,4);
L(6,4,15,4);
        END_NETWORK_BODY
    END_NET_WORK
END_BODY

ST body

If (bEnable) Then
    FP_MEWNET_F_GET_NUMBER_OF_IO_POINTS(s_Slot := iSlot,
                                        d_NumberOfPoints => iNumberOfPoints);
End_if;

Modified on: 2022-01-18Feedback on this pagePanasonic hotline