Provides access to Qwerk's analog inputs.

Namespace:  AForge.Robotics.TeRK
Assembly:  AForge.Robotics.TeRK (in AForge.Robotics.TeRK.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
[ObsoleteAttribute("The class is deprecated.")]
public class AnalogIn

Remarks

The class allows to retrieve state of Qwerk's analog inputs. The total number of available analog inputs equals to Count.

Note:The class is deprecated.

Sample usage:

CopyC#
// get Qwerk's analog inputs service
Qwerk.AnalogIn analogIns = qwerk.GetAnalogInService( );
// get state of 0th input
short input0 = analogIns.GetInput( 0 );
// get state of all inputs
short[] inputs = analogIns.GetInputs( );

Inheritance Hierarchy

System..::.Object
  AForge.Robotics.TeRK..::.Qwerk..::.AnalogIn

See Also