boardDCOut2 (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

AX9 pro, AX9 turbo/encore, NX-900, NX-910

Firmware version:

2.10 / 1.51.00


This function is used to enable/disable the DC-OUT 2 external power supply that is available on some devices.

For technical specification on the DC-OUT 2 external power supply, please consult the technical manual of the respective device.

 

Input:

Enable : BOOL

Enables/disables DC-OUT 2. Default state is: disabled.

 

Returns:

None

 

Declaration:

FUNCTION boardDCOut2;
VAR_INPUT
  enable : BOOL;
END_VAR;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
  ...
  // Enable DC-OUT 2
  boardDCout2(enable:=ON);
  ...
END;
 
END_PROGRAM;