コード例 #1
0
ファイル: Form1.cs プロジェクト: KittenMittons/Lab6
 //Initialize the DSO with an address
 public DSO(byte addr)
 {
     device = new NI.Device(0, addr);        //dso address and board number 0
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: KittenMittons/Lab6
 //Initialize the DMM with an address
 public DMM(byte addr)
 {
     device = new NI.Device(0, addr);
 }