Adding new device Salus SR600 relay

Hi,
I’m trying to add Salus SR600, which is not on the list of supported devices.
I’ve followed the instructions https://github.com/danielwelch/hassio-zigbee2mqtt#adding-support-for-new-devices
The device is being recognised and there are no errors, however, I cannot seem to get any status changes from it.

I’ve added an entry into devices.js
// SALUS-SR600
{
zigbeeModel: [‘SR600’],
model: ‘SR600’,
vendor: ‘SALUS’,
description: ‘relay switch’,
supports: ‘relay control’,
fromZigbee: [fz.on_off],
toZigbee: [tz.on_off],
meta: {configureKey: 4},
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(9);
await bind(endpoint, coordinatorEndpoint, [‘genOnOff’]);
await configureReporting.onOff(endpoint);
},
},
I wasn’t sure what to put into “meta” and “configure” so I’ve copied from the already supported “Salus SP600”.

This is the log when I add the device
INFO: MQTT publish: topic ‘zigbee2mqtt/bridge/log’, payload ‘{“message”:“interview_successful”,“meta”:{“description”:“relay switch”,“friendly_name”:“0x001e5e090263004d”,“model”:“SR600”,“supported”:true,“vendor”:“SALUS”},“type”:“pairing”}’
INFO: Successfully configured ‘0x001e5e090263004d’

Any help would be greately appreciated!

here are some images