1234567891011121314151617181920212223242526272829 |
- //using System;
- //using System.Collections.Generic;
- //using System.Linq;
- //using System.Text;
- //using System.Threading.Tasks;
- //namespace ConsoleApplication2
- //{
- // class Program
- // {
- // static void Main(string[] args)
- // {
- // using (SerialPortDevice spd = new SerialPortDevice("COM1"))
- // {
- // if (!spd.Open())
- // {
- // return;
- // }
- // var bpq = new CH4BPQ(spd);
- // double[] freqs = new double[3];
- // freqs[0] = 950.01;
- // freqs[1] = 1950.12;
- // freqs[2] = 1150.23;
- // String errmsg = String.Empty;
- // bpq.SetFreqs(freqs, ref errmsg);
- // }
- // }
- // }
- //}
|