Provides access to Qwerk's analog inputs.
Namespace:
AForge.Robotics.TeRKAssembly: 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.

Sample usage:

// 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( );