예제 #1
0
파일: FEB.cs 프로젝트: Kreswell/TB4_mu2e
        public void GetMeasurement(int numberOfMeasurements = 1)
        {
            double retval;

            for (int i = 0; i < numberOfMeasurements; i++)
            {
                if ((retval = TekScope.GetVoltage(myDmm)) != double.NaN)
                {
                    Add(retval);
                }
            }
        }
예제 #2
0
파일: FEB.cs 프로젝트: Kreswell/TB4_mu2e
 public FEB()
 {
     //BuildHDMIsignalDB();
     TekScope.OpenScope();
 }