/// <summary> /// Initializes a new instance of the <see cref="Qwerk.AnalogIn"/> class. /// </summary> /// /// <param name="qwerk">Reference to <see cref="Qwerk"/> object, which is connected to Qwerk board.</param> /// /// <exception cref="NotConnectedException">The passed reference to <see cref="Qwerk"/> object is not connected to /// Qwerk board.</exception> /// <exception cref="ConnectionFailedException">Failed connecting to the requested service.</exception> /// <exception cref="ServiceAccessFailedException">Failed accessing to the requested service.</exception> /// public AnalogIn(Qwerk qwerk) { string hostAddress = qwerk.HostAddress; // check if connection was established if (hostAddress != null) { try { Ice.ObjectPrx obj = qwerk.iceCommunicator.stringToProxy("'::TeRK::AnalogInController':tcp -h " + hostAddress + " -p 10101"); obj = obj.ice_timeout(Qwerk.TimeOut); analogInController = TeRKIceLib.AnalogInControllerPrxHelper.checkedCast(obj); } catch (Ice.ObjectNotExistException) { // the object does not exist on the host throw new ServiceAccessFailedException("Failed accessing to the requested service."); } catch { throw new ConnectionFailedException("Failed connecting to the requested service."); } if (analogInController == null) { throw new ServiceAccessFailedException("Failed accessing to the requested cervice."); } } else { throw new NotConnectedException("Qwerk object is not connected to a board."); } }
/// <summary> /// Initializes a new instance of the <see cref="Qwerk.AnalogIn"/> class. /// </summary> /// /// <param name="qwerk">Reference to <see cref="Qwerk"/> object, which is connected to Qwerk board.</param> /// /// <exception cref="NotConnectedException">The passed reference to <see cref="Qwerk"/> object is not connected to /// Qwerk board.</exception> /// <exception cref="ConnectionFailedException">Failed connecting to the requested service.</exception> /// <exception cref="ServiceAccessFailedException">Failed accessing to the requested service.</exception> /// public AnalogIn( Qwerk qwerk ) { string hostAddress = qwerk.HostAddress; // check if connection was established if ( hostAddress != null ) { try { Ice.ObjectPrx obj = qwerk.iceCommunicator.stringToProxy( "'::TeRK::AnalogInController':tcp -h " + hostAddress + " -p 10101" ); obj = obj.ice_timeout( Qwerk.TimeOut ); analogInController = TeRKIceLib.AnalogInControllerPrxHelper.checkedCast( obj ); } catch ( Ice.ObjectNotExistException ) { // the object does not exist on the host throw new ServiceAccessFailedException( "Failed accessing to the requested service." ); } catch { throw new ConnectionFailedException( "Failed connecting to the requested service." ); } if ( analogInController == null ) { throw new ServiceAccessFailedException( "Failed accessing to the requested cervice." ); } } else { throw new NotConnectedException( "Qwerk object is not connected to a board." ); } }