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