diff --git a/app/components/evse.tsx b/app/components/evse.tsx
index 0e2c8b5..36ce413 100644
--- a/app/components/evse.tsx
+++ b/app/components/evse.tsx
@@ -3,7 +3,7 @@
import { SyntheticEvent, useRef, useState } from 'react';
import Input from './input';
import { ConState, IWriter } from '../service/websocket/websocket.model';
-import WebSocket from './WebSocket';
+import WebSocket from './web.socket';
import { ChargingSocket, IChargingSocket } from '../service/ocpp/connector';
import { HandleOcpp } from '../service/ocpp/ocpp.handler';
import { SendBootNotification } from '../service/ocpp/command/boot-notification/boot.notification';
@@ -14,6 +14,7 @@ import {
} from '../service/ocpp/command/status-notification/status.notification';
import { SendStatusNotification } from '../service/ocpp/command/status-notification/statusnotification';
import Transaction from './transaction';
+import MeterValue from './meter.value';
const defaultValue = 'ws://localhost:8080/ocpp/JwNpTpPxPm/CHR202305102';
const connectorId = 1;
@@ -74,10 +75,12 @@ export default function Evse() {
onMessage={onMessage}
online={online}
/>
-
Meter value
+Notes: Meter Values are sent every 20 seconds
+ + +Meter value
+Stop Transaction Meter value
-