示例#1
0
 public void Connect(IPAddress ipAddress, int port, int timeout_ms = 16000)
 {
     sensorsEthernet = new SensorsEthernet();
     sensorsEthernet.Connect(ipAddress, port, timeout_ms);
 }
示例#2
0
 public void Connect(IPEndPoint ipEndPoint, int timeout_ms = 16000)
 {
     sensorsEthernet = new SensorsEthernet();
     sensorsEthernet.Connect(ipEndPoint, timeout_ms);
 }
示例#3
0
 public SensorsViaAOF(SensorsEthernet sensorsEthernet)
 {
     this.sensorsEthernet = sensorsEthernet;
 }