|
|
| void DigitalOutSet |
( |
long |
digitalOutNumber, |
|
|
bool |
value | |
|
) |
| | |
- Description:
- DigitalOutSet sets the state of a digital output bit. It is passed a bit ID relative to the Node (not Segment).
- Parameters:
-
| digitalOutNumber | The digital output number on the node, starts from 0. |
| value | Desired State of the output. |
- Sample Code:
- Set output bit bitNum high.
io->DigitalOutSet(bitNum,true);
io.DigitalOutSet(bitNum, true);
- Notes:
- Slice I/O has multiple segments of same type (Digital/Analog In/Out) which are grouped together. The reference number for any bit of a given type can be defined as when it is encounted relative to the Slice I/O Node or an individual Slice.
- See also:
- DigitalOutGet
|