Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LiquidHandler"/> class.
 /// </summary>
 /// <param name="deviceId">The device Id.</param>
 /// <param name="connection">The <see cref="GSIOCConnection" /> connection to use</param>
 public LiquidHandler(byte deviceId, GSIOCConnection connection) : base(deviceId, connection)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GilsonGSIOCDevice"/> class.
 /// </summary>
 /// <param name="deviceId">The device Id.</param>
 /// <param name="connection">The <see cref="GSIOCConnection"/> connection to use</param>
 protected GilsonGSIOCDevice(byte deviceId, GSIOCConnection connection)
 {
     DeviceId    = deviceId;
     _connection = connection;
 }
Ejemplo n.º 3
0
 public void Dispose()
 {
     _connection = null;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Pump"/> class.
 /// </summary>
 /// <param name="deviceId">The device Id.</param>
 /// <param name="connection">The <see cref="GSIOCConnection" /> connection to use</param>
 public Pump(byte deviceId, GSIOCConnection connection) : base(deviceId, connection)
 {
 }