Skip to content

Commit

Permalink
Converting reading context of meter value to Other
Browse files Browse the repository at this point in the history
Signed-off-by: Piet Gömpel <[email protected]>
  • Loading branch information
Pietfried committed Dec 3, 2024
1 parent 469629c commit 4e86348
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ocpp/v201/evse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,9 @@ 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 4e86348

Please sign in to comment.