<< mdaqAOWrite Data acquisition mdaqDIOFunc >>

MicroDAQ toolbox >> MicroDAQ toolbox > Data acquisition > mdaqDIORead

mdaqDIORead

Reads DIO channel

Calling Sequence

state = mdaqDIORead(dio)
state = mdaqDIORead(linkID, dio)

Description

This function reads DIO channel input state.

Function will return an error if DIO channel is configured as input or has alternative function (ENC1, ENC2, PWM1, PWM2, PWM3, UART). DIO Bank containing selected DIO channel should be configured as an output with mdaq_dio_dir function. Selected DIO channel should be configured as a DIO function, if ENC1, ENC2, PWM1, PWM2, PWM3 or UART function is enabled on selected DIO channel, mdaqDIOFunc function should be used to disable it.

Parameters

Output arguments

Examples

// disable Encoder 1 function
mdaqDIOFunc(1, %f);    
// read DIO1 state			
disp("DIO 1 state:");
disp(mdaqDIORead(1))
// enable Encoder 1 function
mdaqDIOFunc(1, %t);

See Also


Report an issue
<< mdaqAOWrite Data acquisition mdaqDIOFunc >>