AForge.Robotics.TeRK.Qwerk.DigitalIn.GetInputs C# (CSharp) Метод

GetInputs() публичный Метод

Get state of all available digital inputs.
Connestion to Qwerk is lost.
public GetInputs ( ) : bool[]
Результат bool[]
            public bool[] GetInputs( )
            {
                try
                {
                    TeRKIceLib.DigitalInState state = digitalInController.getState( );
                    return state.digitalInStates;
                }
                catch
                {
                    throw new ConnectionLostException( "Connection is lost." );
                }
            }
        }