AioEnableAo


Function

The relay circuit of specified channel is made ON status.

Format

Ret = AioEnableAo ( Id , AoChannel )

Parameters

Id [ VB.NET : Short ] [ C, C++ : short ] [ C# : short ] [ Python : ctypes.c_short ]
Specifies the ID retrieved from AioInit function.

AoChannel [ VB.NET : Short ] [ C, C++ : short ] [ C# : short ] [ Python : ctypes.c_short ]
Specifies the channel its relay is to be made ON.

Return value

Ret [ VB.NET : Integer ] [ C, C++ : long ] [ C# : int ] [ Python : ctypes.c_long ]

Return values

Content

0

Normality completion

7

Execute AioResetDevice function because the device has recovered from standby mode

10001

Invalid Id was specified
Use the Id retrieved from AioInit to specify the Id in this function.

10002

AIO driver can't be called
At first, perform AioInit function.

13360

The value of AoChannel is outside the designated range of the function
Specify the channel setting in range: 0 <= AoChannel <= Max channel.

20001

This function can't be used by this device

20003

Can not use because another process is using the device
When another process is using the device, all functions except for those that support multi-process can not be performed.

Initial value

The relay circuit of all channels is OFF for all devices. 

Remarks

Starts the device action by using AioStartAo function, but the device actually output after AioEnableAo is executed.

When simple output functions are used, the relay circuit status become ON when AioSingleAo or AioMultiAo is executed regardless of the AioEnableAo function.

This function cannot be used on devices without the analog output function.
This function can be executed even if the device is in operation.

Specifications based on devices

AIO-163202G-PE
AIO-163202UG-PE
AIO-123202G-PE
AIO-123202UG-PE
AIO-163202F-PE
ADA16-32/2(PCI)F

Doesn't need to use this function because of this device without a relay circuit. 

AIO-160802L-LPE
ADA16-8/2(LPCI)L
ADAI16-8/2(LPCI)L
AIO-160802LI-PE

Doesn't need to use this function because of this device without a relay circuit. 

AO-1604L-LPE
DA16-16(LPCI)L
DA16-8(LPCI)L
DA16-4(LPCI)L
DAI16-4(LPCI)L
AO-1604LI-PE
AO-1608L-LPE
AO-1616L-LPE

Doesn't need to use this function because of this device without a relay circuit. 

DA12-16(PCI)
DA12-8(PCI)
DA12-4(PCI)

Doesn't need to use this function because of this device without a relay circuit. 

AO-1604CI3-PCI

Use this function to control the relay circuit

DEMO DEVICE

Doesn't need to use this function because of this device without a relay circuit. 

Example

Sets the relay circuit of channel 0 to ON.

VB.NET

Dim Ret As Integer
Ret = AioEnableAo ( Id , 0 )
 

C, C++

long Ret;
Ret = AioEnableAo ( Id , 0 );
 

C#

int Ret;
Ret = aio.EnableAo ( Id , 0 );
 

Python

Ret = ctypes.c_long()
Ret.value = caio.AioEnableAo ( Id , 0 )
 

See also

AioDisableAo