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..b67d5663 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,11 @@ def on_firmware_status_notification(self, **kwargs): def on_transaction_event(self, **kwargs): return call_result.TransactionEventPayload() + @on(Action.MeterValues) + def on_meter_values_event(self, **kwargs): + logging.debug("Received a MeterValues request") + return call_result.MeterValuesPayload() + @on(Action.NotifyChargingLimit) def on_notify_charging_limit(self, **kwargs): return call_result.NotifyChargingLimitPayload()