Example #1
0
 /// <summary>
 /// Gets total counters from a Pump.
 /// </summary>
 /// <remarks>
 /// Before calling this method the Pump should be locked.
 /// </remarks>
 public void GetTotals()
 {
     if (_pts.UseExtendedCommands == false)
     {
         _pts.TotalsRequest(ID, CommandNozzle);
     }
     else
     {
         _pts.ExtendedTotalsRequest(ID, CommandNozzle);
     }
 }