예제 #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);
 }