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