AioDisableAo


Function

The relay circuit of specified channel is made OFF status.

Format

Ret = AioDisableAo ( Id , AoChannel )

Parameters

Id [ C, C++ : short ] [ Python : ctypes.c_short ]
Specifies the Device ID retrieved from AioInit function.

AoChannel [ C, C++ : short ] [ Python : ctypes.c_short ]
Specifies the channel its relay is to be made OFF.

Return value

Ret [ C, C++ : long ] [ 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.

13370

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

Stops the device action by using AioStopAo function, but the latest data are still outputted until AioDisbleAo is executed.

When simple output functions are used, the relay circuit is ON by using AioSingleAo or AioMultiAo functions. Uses this function to set the relay circuit status is OFF.

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

AIO-16256256-DEMO

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

Example

Sets the relay circuit of channel 0 to OFF.

C, C++

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

Python

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

See also

AioEnableAo