Back to Aurora Vision Library website

You are here: Start » Function Reference » Hardware Support » Advantech » AdamTCP_Function05

AdamTCP_Function05


Header: ThirdPartySdk.h
Namespace: avl
Module: ThirdParty

Function code 05. Forces a single coil to either ON or OFF.

Syntax

void avl::AdamTCP_Function05
(
	AdamTCP_State& ioState,
	const atl::Optional<atl::String>& inDeviceIP,
	int inStationAddress,
	int inCoilAddress,
	bool inState
)

Parameters

Name Type Range Default Description
Input will be modified ioState AdamTCP_State& Object used to maintain state of the function.
Input value inDeviceIP const Optional<String>& NIL The Advantech Adam device IP address.
Input value inStationAddress int 0 - 1
Input value inCoilAddress int 0 - 16 The address of the coil to be forced.
Input value inState bool Coil state to be set.

Remarks

You need to specify the IP address of your Adam device in the inDeviceIP port only in the first filter which is using the device. In the consecutive filters you can leave inDeviceIP set to Auto, these filters will connect to the device with the IP address specified in the first filter.

For a more detailed description of the function from this article and other Adam functions available in Aurora Vision, please refer to the Advantech documentation for your device.

Multithreaded environment

This function is not guaranteed to be thread-safe. When used in multithreaded environment, it has to be manually synchronized.

See Also