diff --git a/everest-testing/src/everest/testing/ocpp_utils/charge_point_v201.py b/everest-testing/src/everest/testing/ocpp_utils/charge_point_v201.py index 54315374..e7f82e32 100644 --- a/everest-testing/src/everest/testing/ocpp_utils/charge_point_v201.py +++ b/everest-testing/src/everest/testing/ocpp_utils/charge_point_v201.py @@ -115,6 +115,10 @@ def on_firmware_status_notification(self, **kwargs): def on_transaction_event(self, **kwargs): return call_result.TransactionEventPayload() + @on(Action.MeterValues) + def on_meter_values(self, **kwargs): + return call_result.MeterValuesPayload() + @on(Action.NotifyChargingLimit) def on_notify_charging_limit(self, **kwargs): return call_result.NotifyChargingLimitPayload()