Recorder.DigitalOutGet
DigitalOutGet reads a series of consecutive digital output bits and returns the states as a Boolean array.
Version History
Introduced in MPX 2.0.
Result
Array of Boolean
Arguments
|
Argument |
Type |
Description |
bitStart |
UInt32 |
The first digital output bit to read. |
bitCount |
UInt32 |
The number of digital output bits to read. The last digital output read will be a bit number (bitStart + bitCount -1). |
|
Common Exceptions
|
Error |
Occurs when... |
Argument |
When bitCount exceeds 32. |
|
Visual Basic
Syntax
Function DigitalOutGet(bitStart As UInt32, bitCount As UInt32) As Boolean()
Sample Code
|
Dim can As Mpx.Can = Controller.Can(0)
'Get the first node
Dim canNode As Mpx.CanNode = can.Node(can.NodeIdList(0))
'Get the number of outputs
Dim count As Integer = canNode.DigitalOutCount
'Get all the digital input values
Dim values() As Boolean = canNode.DigitalOutGet(0, count)
|
C#
Syntax
bool[] DigitalOutGet(uint bitStart, uint bitCount);
Sample Code
|
Mpx.Can can = Controller.Can[0];
// Get the first node
Mpx.CanNode canNode = can.Node[can.NodeIdList[0]];
// Get the number of outputs
int count = canNode.DigitalOutCount;
// Get all the digital input values
bool[] values = canNode.DigitalOutGet(0, count);
|
See Also
DigitalOutBit
DigitalOutSet
DigitalOutWait
Overview of MPX I/O
|