HscControl_WriteElapsedValue

Writes elapsed value into high-speed counter channel

This instruction writes an elapsed value into the high-speed counter channel specified by iChannel.

Parameters

Input

diElapsedValue (DINT)

Elapsed value to be written into the channel specified by iChannel

iChannel (INT)

High-speed counter channel:

FPS: 0, 2

FP-X R: 0, 1

FP-X 16K C14T: 0, 1, 2

FP-X 32K C30T, C60T: 0, 1, 2, 3

FP0R: 0, 1, 2, 3

FP0: 0, 1

FP-e: 0, 1

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
		bWrite: BOOL:=FALSE;
		diElapsedValue: DINT:=5000;
		iChannel: INT:=0;
END_VAR

POU body

When the variable bWrite changes from FALSE to TRUE, the elapsed value specified by diElapsedValue is written into the channel specified by iChannel.

LD body

BODY
    WORKSPACE
        NETWORK_LIST_TYPE := NWTYPELD ;
        ACTIVE_NETWORK := 2 ;
    END_WORKSPACE
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 5 ;
        NETWORK_BODY
B(B_F,HscControl_WriteElapsedValue!,,12,0,27,5,,?DEN?DdiElapsedValue?DiChannel?AENO);
B(B_VARIN,,diElapsedValue,10,2,12,4,);
B(B_VARIN,,iChannel,10,3,12,5,);
B(B_CONTACT,,bWrite,4,1,6,3,R);
L(1,2,4,2);
L(6,2,12,2);
L(1,0,1,5);
        END_NETWORK_BODY
    END_NET_WORK
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 5 ;
        NETWORK_BODY
L(1,0,1,5);
        END_NETWORK_BODY
    END_NET_WORK
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 5 ;
        NETWORK_BODY
L(1,0,1,5);
        END_NETWORK_BODY
    END_NET_WORK
END_BODY

ST body

if DF(bWrite) then
    HscControl_WriteElapsedValue(diElapsedValue := diElapsedValue,
    iChannel := iChannel);
end_if;

Modified on: 2019-01-25Feedback on this pagePanasonic hotline