Java-OCA-OCPP icon indicating copy to clipboard operation
Java-OCA-OCPP copied to clipboard

Is MeterStop value the total charged during 1 session or the total since the meter has been installed?

Open RobbeVW opened this issue 11 months ago • 2 comments

The StopTransaction request holds a parameter called MeterStop.

In the documentation, it mentions the following:

  /**
   * This contains the meter value in Wh for the connector at end of the transaction.
   *
   * @return meter value in Wh.
   */
  public Integer getMeterStop() {
    return meterStop;
  }

Does this mean this parameter returns the meter value for the total Wh charged during that session or transaction. Or does this mean the total that has been charged since the meter was ever installed? Both OCPP documentations and this one are open for interpretation.

RobbeVW avatar Mar 26 '24 08:03 RobbeVW