### Link
https://www.se.com/fr/fr/product/MUR36014/mureva-evlink-prise-couran…t-2p+t-renforc%C3%A9e-pour-ve-ip66-ik08-gris/?%3Frange=226303288-prises-de-recharge-mureva-evlink&selectedNodeId=109455364809
### Database entry
```shell
{
"id":30,
"type":"Router",
"ieeeAddr":"0x70ac08fffe03fc81",
"nwkAddr":36618,
"manufId":4190,
"manufName":"Schneider Electric",
"powerSource":"Mains (single phase)",
"modelId":"EVSCKT/OUTLET/1",
"epList":[
6,
242
],
"endpoints":{
"6":{
"profId":260,
"epId":6,
"devId":9,
"inClusterList":[
0,
3,
4,
5,
6,
1794,
1800,
2820,
2821,
64516
],
"outClusterList":[
25
],
"clusters":{
"genBasic":{
"attributes":{
"modelId":"EVSCKT/OUTLET/1",
"manufacturerName":"Schneider Electric",
"powerSource":1,
"zclVersion":3,
"appVersion":2,
"stackVersion":6,
"hwVersion":1,
"dateCode":"",
"swBuildId":"002.010.000 R"
}
},
"genOnOff":{
"attributes":{
"onOff":1
}
},
"haElectricalMeasurement":{
"attributes":{}
}
},
"binds":[
{
"cluster":6,
"type":"endpoint",
"deviceIeeeAddress":"0x00212effff06f0e7",
"endpointID":1
}
],
"configuredReportings":[
{
"cluster":6,
"attrId":0,
"minRepIntval":0,
"maxRepIntval":65000,
"repChange":1,
"manufacturerCode":null
}
],
"meta":{}
},
"242":{
"profId":41440,
"epId":242,
"devId":97,
"inClusterList":[],
"outClusterList":[
33
],
"clusters":{},
"binds":[],
"configuredReportings":[],
"meta":{}
}
},
"appVersion":2,
"stackVersion":6,
"hwVersion":1,
"dateCode":"",
"swBuildId":"002.010.000 R",
"zclVersion":3,
"interviewCompleted":true,
"meta":{},
"lastSeen":1708273491823
}
````
### Comments
Hi,
This equipment is recognized under ZHA but not under Z2MQTT.
I tried to follow the procedure for its integration but without success.
I also cloned the zigbee2mqtt.io repo in order to make a pull request for the image of this team but again without success.
Thank you in advance for its integration.
This is a reinforced socket for mainly charging electric vehicles.
It allows you to turn the socket off and on as well as monitor the electricity consumption on this socket.
### External definition
```shell
const {onOff, electricityMeter} = require('zigbee-herdsman-converters/lib/modernExtend');
const definition = {
zigbeeModel: ['EVSCKT/OUTLET/1'],
model: 'EVSCKT/OUTLET/1',
vendor: 'Schneider Electric',
description: 'Reinforced power socket',
extend: [onOff({"powerOnBehavior":false}), electricityMeter()],
meta: {},
};
module.exports = definition;
```