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