Skip to content

Commit

Permalink
Converting reading context of meter value to Other (#899)
Browse files Browse the repository at this point in the history
* Converting reading context of meter value to Other

Signed-off-by: Piet Gömpel <[email protected]>
Signed-off-by: Maaike Zijderveld, iolar <[email protected]>
Co-authored-by: Piet Gömpel <[email protected]>
  • Loading branch information
maaikez and Pietfried authored Dec 4, 2024
1 parent 469629c commit 03cc868
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ocpp/v201/evse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,8 @@ void Evse::send_meter_value_on_pricing_trigger(const MeterValue& meter_value) {
// Send metervalue anyway since we have no previous metervalue stored and don't know if we should send any
if (!meter_value_sent) {
// Only send metervalue if it is not sent yet, otherwise only the last triggered metervalue is set.
this->send_metervalue_function({meter_value});
const MeterValue mv = utils::set_meter_value_reading_context(meter_value, ReadingContextEnum::Other);
this->send_metervalue_function({mv});
}
this->last_triggered_metervalue_power_kw = active_power_meter_value.value() / 1000;
}
Expand Down

0 comments on commit 03cc868

Please sign in to comment.