Exemplo n.º 1
0
        public void OpenLabJack()
        {
            var LJDevice = new LabJackGateway();

            LJDevice.OpenLabJack();

            Assert.Equal(LJM.LJMERROR.NOERROR, LJDevice.LastError);
        }
Exemplo n.º 2
0
        public void AnalogLoopback()
        {
            double[] DataOut = new double[2];
            double[] DataIn;
            var      LJDevice = new LabJackGateway();

            LJDevice.OpenLabJack();

            DataOut[0] = 1;
            DataOut[1] = 2;
            LJDevice.SetAnalogData(DataOut);

            DataIn = LJDevice.GetAnalogData();

            Assert.Equal(DataOut[0], DataIn[0], 2);
            Assert.Equal(DataOut[1], DataIn[1], 2);
        }