internal MeasurementResult(MeasurementFunction function, short[] values, bool processing)
 {
     this.Function    = function;
     this.Usermessage = values;
     this.processing  = processing;
     this.recordTime  = DateTime.Now;
 }
 internal MeasurementResult(MeasurementFunction function, PhysicalVariable[] values, bool processing)
 {
     this.Function   = function;
     this.values     = values;
     this.processing = processing;
     this.recordTime = DateTime.Now;
 }
 internal MeasurementResult(MeasurementFunction function, PhysicalVariable[] values, short[] waves, bool processing, DateTime time)
 {
     this.Function   = function;
     this.values     = values;
     this.processing = processing;
     this.recordTime = time;
     this.waves      = waves;
 }
 internal MeasurementResult(MeasurementFunction function, PhysicalVariable[] values, short[] waves, bool readyToTrigger, bool processing)
 {
     this.Function       = function;
     this.values         = values;
     this.waves          = waves;
     this.processing     = processing;
     this.readyToTrigger = readyToTrigger;
     this.recordTime     = DateTime.Now;
 }
Ejemplo n.º 5
0
 internal MeasurementItemStruct(MeasurementFunction function)
 {
     this.Function = function;
 }
Ejemplo n.º 6
0
 public void Configure(MeasurementFunction measurementFunction, double range, double resolution)
 {
     ViSessionStatusCheck(((IviCInterop.IviDmm)Interop).ConfigureMeasurement(Session, DmmMeasurementFunction.getC_Value(measurementFunction), range, resolution));
 }
Ejemplo n.º 7
0
 public Task <IEnumerable <SensorMeasure> > MeasureChannelsAsync(IEnumerable <string> channels, MeasurementFunction function)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 8
0
 public Task <SensorMeasure> MeasureChannelAsync(string channel, MeasurementFunction function)
 {
     throw new NotImplementedException();
 }