예제 #1
0
 public List <double> GetBpList()
 {
     _bpList = new List <double>();
     _daq    = Maaling();
     _daq.getVoltageSeqBlocking();
     foreach (var item in _daq.currentVoltageSeq)
     {
         _bpList.Add(item);
     }
     return(_bpList);
 }