AioGetAiInputMethod


Function

Retrieves the analog input method. This function supports multi-process.

Format

Ret = AioGetAiInputMethod ( Id , AiInputMethod )

Parameters

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

AiInputMethod [ VB.NET : Short ] [ C, C++ : short * ] [ C# : out short ] [ Python : ctypes.POINTER(ctypes.c_short) ]
Specifies the address of the variable that stores the analog input method.

0

Single-end input

1

Differential input

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.

11010

Pointer to AiInputMethod is NULL
Specify the address of variable to parameter.

20001

This function can't be used by this device

20002

Can not use while by another device works
To use this function, analog input operation must be stopped.

Initial value

It differs by the device type and the JP settings.

Remarks

This function cannot be used on devices without the analog input function.
If the device is in operation, the function cannot be performed.

Specifications based on devices

AI-1664UG-PE

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

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

AIO-160802L-LPE
ADA16-8/2(LPCI)L
ADAI16-8/2(LPCI)L
AIO-160802LI-PE
AI-1204Z-PE
AI-1204Z-PCI

AiInputMethod = 0 is fixed.

AI-1616L-LPE
AD16-16(LPCI)L
ADI16-16(LPCI)L
AI-1616LI-PE

AiInputMethod = 0 is fixed.

AD12-16(PCI)EV
AD12-16U(PCI)EV
AD16-16(PCI)EV
AD16-16U(PCI)EV
AIO-121601E3-PE
AIO-121601UE3-PE
AIO-161601E3-PE
AIO-161601UE3-PE
AI-1216I2-PCI

Returns AiInputMethod = 0 or 1 by the JP settings.

AD12-64(PCI)
AD12-16(PCI)
AD16-64(LPCI)LA
AI-1664LA-LPE

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

AI-1604CI2-PCI

AiInputMethod = 0 is fixed.

AI-1608AY-USB
AIO-160802AY-USB
AI-1608GY-USB
AIO-160802GY-USB

AiInputMethod = 0 is fixed.

AIO-163202FX-USB

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

DEMO DEVICE

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

AI-1664LAX-USB

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

AIO-121602LN-USB
AIO-120802LN-USB

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

AI-1608VIN-USB
AI-1608AIN-USB
AI-1608VIN-ETH
AI-1608AIN-ETH

AiInputMethod = 1 is fixed.

AI-1004LY-WQ

AiInputMethod = 0 is fixed.

CPSN-AI-1208LI
CPSN-AI-2408LI

The value sets by using the function is returned. Initial value is AiInputMethod = 0.

Example

Retrieves the analog input method.

VB.NET

Dim Ret As Integer
Dim AiInputMethod As Short
Ret = AioGetAiInputMethod ( Id , AiInputMethod )
 

C, C++

long Ret;
short AiInputMethod;
Ret = AioGetAiInputMethod ( Id , &AiInputMethod );
 

C#

int Ret;
short AiInputMethod;
Ret = aio.GetAiInputMethod ( Id , out AiInputMethod );
 

Python

Ret = ctypes.c_long()
AiInputMethod = ctypes.c_short()
Ret.value = caio.AioGetAiInputMethod ( Id , ctypes.byref(AiInputMethod) )
 

See also

AioSetAiInputMethod