private void cmdDigitalInfo_Click(object sender, EventArgs e) { int dioChannelCount = 0; ULStat = logger.GetDIOInfo(ref dioChannelCount); if (ULStat.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblComment.Text = ULStat.Message + "."; } else { txtResults.Text = "The Digital properties of '" + logger.FileName + "' are:" + "\r\n" + "\r\n" + "\t" + "Number of digital channels: " + "\t" + dioChannelCount.ToString("0"); } }
public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // Initiate error handling // activating error handling will trap errors like // bad channel numbers and non-configured conditions. // Parameters: // MccDaq.ErrorReporting.PrintAll :all warnings and errors encountered will be printed // MccDaq.ErrorHandling.StopAll :if an error is encountered, the program will stop MccDaq.ErrorInfo errorInfo = MccDaq.MccService.ErrHandling(MccDaq.ErrorReporting.PrintAll, MccDaq.ErrorHandling.StopAll); // Get the first file in the directory // Parameters: // MccDaq.GetFileOptions.GetFirst :first file // m_Path :path to search // filename :receives name of file string filename = new string('\0', MAX_PATH); errorInfo = MccDaq.DataLogger.GetFileName((int)MccDaq.GetFileOptions.GetFirst, ref m_Path, ref filename); string newpath = filename.TrimEnd('\0'); string absolutePath = Path.GetFullPath(newpath); // create an instance of the data logger MccDaq.DataLogger logger = new MccDaq.DataLogger(filename); // Get the file info for the first file in the directory // Parameters: // filename :file to retrieve information from // version :receives the version of the file // size :receives the size of file int version = 0; int size = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetFileInfo(ref version, ref size); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblFilename.Text = absolutePath; lblFileVersion.Text = version.ToString(); lblFileSize.Text = size.ToString(); } } // Get the sample info for the first file in the directory // Parameters: // sampleInterval :receives the sample interval (time between samples) // sampleCount :receives the sample count // startDate :receives the start date // startTime :receives the start time int sampleInterval = 0; int sampleCount = 0; int startDate = 0; int startTime = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetSampleInfo(ref sampleInterval, ref sampleCount, ref startDate, ref startTime); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblSampleInterval.Text = sampleInterval.ToString(); lblSampleCount.Text = sampleCount.ToString(); int day = startDate & 0xff; int month = (startDate>>8) & 0xff; int year = (startDate>>16) & 0xffff; string dateStr = month.ToString() + "/" + day.ToString() + "/" + year.ToString(); lblStartDate.Text = dateStr; string postfix; switch ((startTime >> 24) & 0xff) { case 0: postfix = " AM"; break; case 1: postfix = " PM"; break; case -1: postfix = ""; break; default: postfix = ""; break; } int hours = (startTime>>16) & 0xff; int minutes = (startTime>>8) & 0xff; int seconds = (startTime) & 0xff; string timeStr = hours.ToString() + ":" + minutes.ToString() + ":" + seconds.ToString() + ":" + postfix; lblStartTime.Text = timeStr; } } // Get the ANALOG channel count for the first file in the directory // Parameters: // channelMask :receives the channel mask to specify which channels were logged // unitMask :receives the unit mask to specify temp or raw data // aiChannelCount :receives the number of AI chennels logged int aiChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIChannelCount(ref aiChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblAIChannelCount.Text = aiChannelCount.ToString(); } } // Get the ANALOG info for the first file in the directory // Parameters: // channelMask :receives the channel mask to specify which channels were logged // unitMask :receives the unit mask to specify temp or raw data int [] channelNumbers; int [] units; channelNumbers = new int[aiChannelCount]; units = new int[aiChannelCount]; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIInfo(ref channelNumbers, ref units); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblChannelMask.Text = ""; lblUnitMask.Text = ""; for (int i=0; i<aiChannelCount; i++) { lblChannelMask.Text += channelNumbers[i].ToString(); if (units[i] == Convert.ToInt32(MccDaq.LoggerUnits.Raw)) lblUnitMask.Text += "Raw"; else lblUnitMask.Text += "Temperature"; if (i < aiChannelCount - 1) { lblChannelMask.Text = lblChannelMask.Text + ", "; lblUnitMask.Text = lblUnitMask.Text + ", "; } } } } // Get the CJC info for the first file in the directory // Parameters: // cjcChannelCount :receives the number of CJC chennels logged int cjcChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetCJCInfo( ref cjcChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblCJCChannelCount.Text = cjcChannelCount.ToString(); } } // Get the DIO info for the first file in the directory // Parameters: // dioChannelCount :receives the number of DIO chennels logged int dioChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetDIOInfo(ref dioChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblDIOChannelCount.Text = dioChannelCount.ToString(); } } if (errorInfo.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { MessageBox.Show(errorInfo.Message); return; } }
private void cmdDigitalData_Click(object sender, EventArgs e) { int Hour, Minute, Second; int Month, Day, Year; int Postfix; string PostfixStr, StartDateStr, DataListStr; string StartTimeStr, lbDataStr; int StartSample, i, j; int[] DateTags, TimeTags, dioChannelData; int Index; int dioChannelCount = 0; string UnitList, ChanList; int ListSize; // Get the Digital channel count // Parameters: // dioChannelCount :receives the number of DIO chennels logged ULStat = logger.GetDIOInfo(ref dioChannelCount); ChanList = ""; UnitList = ""; if (ULStat.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { txtData.Text = ULStat.Message; } else { dioChannelData = new int[SampleCount * dioChannelCount]; if ((dioChannelCount > 0) & (SampleCount > 0)) { DataListStr = "Time" + "\t" + "\t" + ChanList + "\r\n" + "\t" + "\t" + UnitList + "\r\n" + "\r\n"; StartSample = 0; DateTags = new int[SampleCount]; TimeTags = new int[SampleCount]; ULStat = logger.ReadTimeTags(StartSample, SampleCount, ref DateTags, ref TimeTags); dioChannelData = new int[SampleCount * dioChannelCount]; ULStat = logger.ReadDIOChannels(StartSample, SampleCount, ref dioChannelData); ListSize = SampleCount; if (ListSize > 50) { ListSize = 50; } PostfixStr = ""; for (i = 0; i < ListSize; i++) { //Parse the date from the StartDate parameter Month = (DateTags[i] >> 8) & 0xff; Day = DateTags[i] & 0xff; Year = (DateTags[i] >> 16) & 0xff; StartDateStr = Month.ToString("00") + "/" + Day.ToString("00") + "/" + Year.ToString("0000"); //Parse the time from the StartTime parameter Hour = (TimeTags[i] >> 16) & 0xff; Minute = (TimeTags[i] >> 8) & 0xff; Second = TimeTags[i] & 0xff; Postfix = (TimeTags[i] >> 24) & 0xff; if (Postfix == 0) { PostfixStr = " AM"; } if (Postfix == 1) { PostfixStr = " PM"; } StartTimeStr = Hour.ToString("00") + ":" + Minute.ToString("00") + ":" + Second.ToString("00") + PostfixStr + "\t"; Index = i * dioChannelCount; lbDataStr = ""; for (j = 0; j < dioChannelCount; j++) { lbDataStr = lbDataStr + dioChannelData[Index + j].ToString("0"); } DataListStr = DataListStr + StartDateStr + " " + StartTimeStr + lbDataStr + "\r\n"; } txtData.Text = "Digital data from " + logger.FileName + "\r\n" + "\r\n" + DataListStr; } else { txtData.Text = "There is no digital data in " + logger.FileName + "."; } } }
public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // Initiate error handling // activating error handling will trap errors like // bad channel numbers and non-configured conditions. // Parameters: // MccDaq.ErrorReporting.PrintAll :all warnings and errors encountered will be printed // MccDaq.ErrorHandling.StopAll :if an error is encountered, the program will stop MccDaq.ErrorInfo errorInfo = MccDaq.MccService.ErrHandling(MccDaq.ErrorReporting.PrintAll, MccDaq.ErrorHandling.StopAll); // Get the first file in the directory // Parameters: // MccDaq.GetFileOptions.GetFirst :first file // m_Path :path to search // filename :receives name of file string filename = new string('\0', MAX_PATH); errorInfo = MccDaq.DataLogger.GetFileName((int)MccDaq.GetFileOptions.GetFirst, ref m_Path, ref filename); // create an instance of the data logger MccDaq.DataLogger logger = new MccDaq.DataLogger(filename); // Set the preferences // Parameters // timeFormat :specifies times are 12 or 24 hour format // timeZone :specifies local time of GMT // units :specifies Fahrenheit, Celsius, or Kelvin MccDaq.TimeFormat timeFormat = MccDaq.TimeFormat.TwelveHour; MccDaq.TimeZone timeZone = MccDaq.TimeZone.Local; MccDaq.TempScale units = MccDaq.TempScale.Fahrenheit; logger.SetPreferences(timeFormat, timeZone, units); // Get the sample info for the first file in the directory // Parameters: // sampleInterval :receives the sample interval (time between samples) // sampleCount :receives the sample count // startDate :receives the start date // startTime :receives the start time int sampleInterval = 0; int sampleCount = 0; int startDate = 0; int startTime = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetSampleInfo(ref sampleInterval, ref sampleCount, ref startDate, ref startTime); } // Get the ANALOG channel count for the first file in the directory // Parameters: // aiChannelCount :receives the number of AI chennels logged int aiChannelCount = 0; float [] aiChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIChannelCount(ref aiChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { aiChannelData = new float [sampleCount * aiChannelCount]; } } // Get the CJC info for the first file in the directory // Parameters: // cjcChannelCount :receives the number of CJC chennels logged int cjcChannelCount = 0; float [] cjcChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetCJCInfo( ref cjcChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { cjcChannelData = new float [sampleCount * cjcChannelCount]; } } // Get the DIO info for the first file in the directory // Parameters: // dioChannelCount :receives the number of DIO chennels logged int dioChannelCount = 0; int [] dioChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetDIOInfo(ref dioChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { dioChannelData = new int [sampleCount * dioChannelCount]; } } // Read the time tag information // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // dateTags :receives the date tag information // timeTags :receives the time tag information int startSample = 0; int [] dateTags = new int [sampleCount]; int [] timeTags = new int [sampleCount]; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadTimeTags(startSample, sampleCount, ref dateTags, ref timeTags); } // Read the Analog data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // aiChannelData :receives the analog data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadAIChannels(startSample, sampleCount, ref aiChannelData); } // Read the CJC data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // cjcChannelData :receives the cjc data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadCJCChannels(startSample, sampleCount, ref cjcChannelData); } // Read the DIO data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // dioChannelData :receives the dio data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadDIOChannels(startSample, sampleCount, ref dioChannelData); } // display the data in teh list box string displayStr; string dateStr; string timeStr; string postfix; int index; for (int i=0; i<sampleCount; i++) { int date = dateTags[i]; int time = timeTags[i]; int day = date & 0xff; int month = (date>>8) & 0xff; int year = (date>>16) & 0xffff; dateStr = month.ToString() + "/" + day.ToString() + "/" + year.ToString(); switch ((time >> 24) & 0xff) { case 0: postfix = " AM"; break; case 1: postfix = " PM"; break; case -1: postfix = ""; break; default: postfix = ""; break; } int hours = (time>>16) & 0xff; int minutes = (time>>8) & 0xff; int seconds = (time) & 0xff; timeStr = hours.ToString() + ":" + minutes.ToString() + ":" + seconds.ToString() + ":" + postfix; displayStr = dateStr + " " + timeStr; if (aiChannelCount > 0) { index = i * aiChannelCount; for (int j=0; j<aiChannelCount; j++) { displayStr += "\t\t" + aiChannelData[index++].ToString(); } } if (cjcChannelCount > 0) { index = i * cjcChannelCount; for (int j=0; j<cjcChannelCount; j++) { displayStr += "\t\t" + cjcChannelData[index++].ToString(); } } if (dioChannelCount > 0) { index = i * dioChannelCount; for (int j=0; j<dioChannelCount; j++) { displayStr += "\t" + dioChannelData[index++].ToString(); } } lbData.Items.Add(displayStr); } if (errorInfo.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { MessageBox.Show(errorInfo.Message); return; } }
public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // Initiate error handling // activating error handling will trap errors like // bad channel numbers and non-configured conditions. // Parameters: // MccDaq.ErrorReporting.PrintAll :all warnings and errors encountered will be printed // MccDaq.ErrorHandling.StopAll :if an error is encountered, the program will stop MccDaq.ErrorInfo errorInfo = MccDaq.MccService.ErrHandling(MccDaq.ErrorReporting.PrintAll, MccDaq.ErrorHandling.StopAll); // Get the first file in the directory // Parameters: // MccDaq.GetFileOptions.GetFirst :first file // m_Path :path to search // filename :receives name of file string filename = new string('\0', MAX_PATH); errorInfo = MccDaq.DataLogger.GetFileName((int)MccDaq.GetFileOptions.GetFirst, ref m_Path, ref filename); // create an instance of the data logger MccDaq.DataLogger logger = new MccDaq.DataLogger(filename); // Set the preferences // Parameters // timeFormat :specifies times are 12 or 24 hour format // timeZone :specifies local time of GMT // units :specifies Fahrenheit, Celsius, or Kelvin MccDaq.TimeFormat timeFormat = MccDaq.TimeFormat.TwelveHour; MccDaq.TimeZone timeZone = MccDaq.TimeZone.Local; MccDaq.TempScale units = MccDaq.TempScale.Fahrenheit; logger.SetPreferences(timeFormat, timeZone, units); // Get the sample info for the first file in the directory // Parameters: // sampleInterval :receives the sample interval (time between samples) // sampleCount :receives the sample count // startDate :receives the start date // startTime :receives the start time int sampleInterval = 0; int sampleCount = 0; int startDate = 0; int startTime = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetSampleInfo(ref sampleInterval, ref sampleCount, ref startDate, ref startTime); } // Get the ANALOG channel count for the first file in the directory // Parameters: // aiChannelCount :receives the number of AI chennels logged int aiChannelCount = 0; float [] aiChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIChannelCount(ref aiChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { aiChannelData = new float [sampleCount * aiChannelCount]; } } // Get the CJC info for the first file in the directory // Parameters: // cjcChannelCount :receives the number of CJC chennels logged int cjcChannelCount = 0; float [] cjcChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetCJCInfo(ref cjcChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { cjcChannelData = new float [sampleCount * cjcChannelCount]; } } // Get the DIO info for the first file in the directory // Parameters: // dioChannelCount :receives the number of DIO chennels logged int dioChannelCount = 0; int [] dioChannelData = null; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetDIOInfo(ref dioChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { dioChannelData = new int [sampleCount * dioChannelCount]; } } // Read the time tag information // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // dateTags :receives the date tag information // timeTags :receives the time tag information int startSample = 0; int [] dateTags = new int [sampleCount]; int [] timeTags = new int [sampleCount]; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadTimeTags(startSample, sampleCount, ref dateTags, ref timeTags); } // Read the Analog data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // aiChannelData :receives the analog data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadAIChannels(startSample, sampleCount, ref aiChannelData); } // Read the CJC data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // cjcChannelData :receives the cjc data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadCJCChannels(startSample, sampleCount, ref cjcChannelData); } // Read the DIO data // Parameters: // startSample :first sample to read // sampleCount :number of samples to read // dioChannelData :receives the dio data if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.ReadDIOChannels(startSample, sampleCount, ref dioChannelData); } // display the data in teh list box string displayStr; string dateStr; string timeStr; string postfix; int index; for (int i = 0; i < sampleCount; i++) { int date = dateTags[i]; int time = timeTags[i]; int day = date & 0xff; int month = (date >> 8) & 0xff; int year = (date >> 16) & 0xffff; dateStr = month.ToString() + "/" + day.ToString() + "/" + year.ToString(); switch ((time >> 24) & 0xff) { case 0: postfix = " AM"; break; case 1: postfix = " PM"; break; case -1: postfix = ""; break; default: postfix = ""; break; } int hours = (time >> 16) & 0xff; int minutes = (time >> 8) & 0xff; int seconds = (time) & 0xff; timeStr = hours.ToString() + ":" + minutes.ToString() + ":" + seconds.ToString() + ":" + postfix; displayStr = dateStr + " " + timeStr; if (aiChannelCount > 0) { index = i * aiChannelCount; for (int j = 0; j < aiChannelCount; j++) { displayStr += "\t\t" + aiChannelData[index++].ToString(); } } if (cjcChannelCount > 0) { index = i * cjcChannelCount; for (int j = 0; j < cjcChannelCount; j++) { displayStr += "\t\t" + cjcChannelData[index++].ToString(); } } if (dioChannelCount > 0) { index = i * dioChannelCount; for (int j = 0; j < dioChannelCount; j++) { displayStr += "\t" + dioChannelData[index++].ToString(); } } lbData.Items.Add(displayStr); } if (errorInfo.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { MessageBox.Show(errorInfo.Message); return; } }
public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // Initiate error handling // activating error handling will trap errors like // bad channel numbers and non-configured conditions. // Parameters: // MccDaq.ErrorReporting.PrintAll :all warnings and errors encountered will be printed // MccDaq.ErrorHandling.StopAll :if an error is encountered, the program will stop MccDaq.ErrorInfo errorInfo = MccDaq.MccService.ErrHandling(MccDaq.ErrorReporting.PrintAll, MccDaq.ErrorHandling.StopAll); // Get the first file in the directory // Parameters: // MccDaq.GetFileOptions.GetFirst :first file // m_Path :path to search // filename :receives name of file string filename = new string('\0', MAX_PATH); errorInfo = MccDaq.DataLogger.GetFileName((int)MccDaq.GetFileOptions.GetFirst, ref m_Path, ref filename); string newpath = filename.TrimEnd('\0'); string absolutePath = Path.GetFullPath(newpath); // create an instance of the data logger MccDaq.DataLogger logger = new MccDaq.DataLogger(filename); // Get the file info for the first file in the directory // Parameters: // filename :file to retrieve information from // version :receives the version of the file // size :receives the size of file int version = 0; int size = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetFileInfo(ref version, ref size); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblFilename.Text = absolutePath; lblFileVersion.Text = version.ToString(); lblFileSize.Text = size.ToString(); } } // Get the sample info for the first file in the directory // Parameters: // sampleInterval :receives the sample interval (time between samples) // sampleCount :receives the sample count // startDate :receives the start date // startTime :receives the start time int sampleInterval = 0; int sampleCount = 0; int startDate = 0; int startTime = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetSampleInfo(ref sampleInterval, ref sampleCount, ref startDate, ref startTime); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblSampleInterval.Text = sampleInterval.ToString(); lblSampleCount.Text = sampleCount.ToString(); int day = startDate & 0xff; int month = (startDate >> 8) & 0xff; int year = (startDate >> 16) & 0xffff; string dateStr = month.ToString() + "/" + day.ToString() + "/" + year.ToString(); lblStartDate.Text = dateStr; string postfix; switch ((startTime >> 24) & 0xff) { case 0: postfix = " AM"; break; case 1: postfix = " PM"; break; case -1: postfix = ""; break; default: postfix = ""; break; } int hours = (startTime >> 16) & 0xff; int minutes = (startTime >> 8) & 0xff; int seconds = (startTime) & 0xff; string timeStr = hours.ToString() + ":" + minutes.ToString() + ":" + seconds.ToString() + ":" + postfix; lblStartTime.Text = timeStr; } } // Get the ANALOG channel count for the first file in the directory // Parameters: // channelMask :receives the channel mask to specify which channels were logged // unitMask :receives the unit mask to specify temp or raw data // aiChannelCount :receives the number of AI chennels logged int aiChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIChannelCount(ref aiChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblAIChannelCount.Text = aiChannelCount.ToString(); } } // Get the ANALOG info for the first file in the directory // Parameters: // channelMask :receives the channel mask to specify which channels were logged // unitMask :receives the unit mask to specify temp or raw data int [] channelNumbers; int [] units; channelNumbers = new int[aiChannelCount]; units = new int[aiChannelCount]; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetAIInfo(ref channelNumbers, ref units); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblChannelMask.Text = ""; lblUnitMask.Text = ""; for (int i = 0; i < aiChannelCount; i++) { lblChannelMask.Text += channelNumbers[i].ToString(); if (units[i] == Convert.ToInt32(MccDaq.LoggerUnits.Raw)) { lblUnitMask.Text += "Raw"; } else { lblUnitMask.Text += "Temperature"; } if (i < aiChannelCount - 1) { lblChannelMask.Text = lblChannelMask.Text + ", "; lblUnitMask.Text = lblUnitMask.Text + ", "; } } } } // Get the CJC info for the first file in the directory // Parameters: // cjcChannelCount :receives the number of CJC chennels logged int cjcChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetCJCInfo(ref cjcChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblCJCChannelCount.Text = cjcChannelCount.ToString(); } } // Get the DIO info for the first file in the directory // Parameters: // dioChannelCount :receives the number of DIO chennels logged int dioChannelCount = 0; if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { errorInfo = logger.GetDIOInfo(ref dioChannelCount); if (errorInfo.Value == MccDaq.ErrorInfo.ErrorCode.NoErrors) { lblDIOChannelCount.Text = dioChannelCount.ToString(); } } if (errorInfo.Value != MccDaq.ErrorInfo.ErrorCode.NoErrors) { MessageBox.Show(errorInfo.Message); return; } }