Ejemplo n.º 1
0
        public void StartCalibration()
        {
            localDAQ.CollectData();

            foreach (var obj in localDAQ.GetCollectedRawData())// Transfers content measured from the DAQ to the collection
            {
                _calibrationCollection.Add(obj);
            }
        }
Ejemplo n.º 2
0
        public void GetRawData() // This method is used exclusively by the measuring thread
        {
            while (!ShallStop)
            {
                localDAQ.CollectData();                             // Starts the data collection

                foreach (var obj in localDAQ.GetCollectedRawData()) // Transfers content measured from the DAQ to the collection
                {
                    _collection.Add(obj);
                }
            }
        }