Inputs the data in byte from the specified port of digital input. This function supports multi-process.
Ret = AioInputDiByte ( Id , DiPort , DiData )
Id
[ VB.NET : Short ] [ C, C++ : short ] [ C# : short ] [ Python : ctypes.c_short
]
Specifies the device ID retrieved from AioInit.
DiPort
[ VB.NET : Short ] [ C, C++ : short ] [ C# : short ] [ Python : ctypes.c_short
]
Specifies the port of digital input.
DiData
[ VB.NET : Short ] [ C, C++ : short * ] [ C# : out short ] [ Python :
ctypes.POINTER(ctypes.c_short) ]
Specifies the address of the variable that stores the input data.
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 |
10002 |
AIO
driver can't be called |
14010 |
The
value of DiPort is outside the designated range of the function |
14011 |
Pointer
to DiData is NULL |
20001 |
This function can't be used by this device |
24010 |
The value of DiPort is outside the designated range of the device being used |
This function cannot be used on devices without digital input functionality.
A device that has both digital input and
external control signal input can use only one of these functions.
If digital input is performed while an external control signal is set,
the external control signal setting becomes invalid.
AIO-163202G-PE |
The behavior depends on the [E-series settings] jumper on device.
If the [E-series settings] jumper on the device is [Do not use as E-series compatible], you can switch the I/O direction with AioSetDioDirection. When accessing DIO00 to DIO07, specify 0 for the parameter DiPort. When accessing DIO08 to DIO15, specify 1 for the parameter DiPort. For digital output port, it is the echo back value.
If the [E-series settings] jumper on the device is [Use as E-series compatible], DIO00 to DIO07 are fixed as Input, and DIO08 to DIO15 are fixed as output. When accessing DIO00 to DIO07, specify 0 for the parameter DiPort. DIO08 to DIO15 cannot be accessed. |
AIO-121602LN-USB AIO-120802LN-USB |
You can switch the I/O direction with AioSetDioDirection.
When accessing DIO00 to DIO07, specify 0 for the parameter DiPort. When accessing DIO08 to DIO15, specify 1 for the parameter DiPort. For digital output port, it is the echo back value. |
Inputs the digital data from port 0.
VB.NET |
Dim
Ret As Integer |
C, C++ |
long
Ret; |
C# |
int
Ret; |
Python |
Ret
= ctypes.c_long() |