**Is your feature request related to a problem? Please describe.**
A clear and …concise description of what the problem is. Ex. I'm always frustrated when [...]
The device is not yet supported in ZHA but I saw that it received support in zigbee2mqtt https://www.zigbee2mqtt.io/devices/WRS-R02.html
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Support for single/double/triple/long press of left/right & both buttons.
**Device signature - this can be acquired by removing the device from ZHA and pairing it again from the add devices screen. Be sure to add the entire content of the log panel after pairing the device to a code block below this line.**
```
{
"node_descriptor": "NodeDescriptor(byte1=2, byte2=64, mac_capability_flags=128, manufacturer_code=4447, maximum_buffer_size=127, maximum_incoming_transfer_size=100, server_mask=11264, maximum_outgoing_transfer_size=100, descriptor_capability_field=0, *allocate_address=True, *complex_descriptor_available=False, *is_alternate_pan_coordinator=False, *is_coordinator=False, *is_end_device=True, *is_full_function_device=False, *is_mains_powered=False, *is_receiver_on_when_idle=False, *is_router=False, *is_security_capable=False, *is_valid=True, *logical_type=<LogicalType.EndDevice: 2>, *user_descriptor_available=False)",
"endpoints": {
"1": {
"profile_id": 260,
"device_type": "0x0103",
"in_clusters": [
"0x0000",
"0x0001",
"0x0003"
],
"out_clusters": [
"0x0003",
"0x0006"
]
},
"2": {
"profile_id": null,
"device_type": "",
"in_clusters": [],
"out_clusters": []
},
"3": {
"profile_id": 260,
"device_type": "0x0103",
"in_clusters": [
"0x0003"
],
"out_clusters": [
"0x0006"
]
},
"4": {
"profile_id": null,
"device_type": "",
"in_clusters": [],
"out_clusters": []
},
"5": {
"profile_id": null,
"device_type": "",
"in_clusters": [],
"out_clusters": []
},
"6": {
"profile_id": null,
"device_type": "",
"in_clusters": [],
"out_clusters": []
}
},
"manufacturer": "LUMI",
"model": "lumi.remote.b28ac1",
"class": "zigpy.device.Device"
}
```
**Additional context**
Add any other context or screenshots about the feature request here.
The device was paired in home assistant's ZHA integration but not working properly. Both buttons behave as the same button.
Below is the result of zha_event listening
Right button single press
```
{
"event_type": "zha_event",
"data": {
"device_ieee": "EDITED OUT",
"unique_id": "EDITED OUT",
"device_id": "EDITED OUT",
"endpoint_id": 1,
"cluster_id": 6,
"command": "toggle",
"args": []
},
"origin": "LOCAL",
"time_fired": "2021-06-26T13:43:42.499260+00:00",
"context": {
"id": "b9d5f1afde358915f8619d1153832a07",
"parent_id": null,
"user_id": null
}
}
```
Left button single press
```
{
"event_type": "zha_event",
"data": {
"device_ieee": "EDITED OUT",
"unique_id": "EDITED OUT",
"device_id": "EDITED OUT",
"endpoint_id": 1,
"cluster_id": 6,
"command": "toggle",
"args": []
},
"origin": "LOCAL",
"time_fired": "2021-06-26T13:43:32.947572+00:00",
"context": {
"id": "d35c686ec88e197fa8f7adad07ad1b72",
"parent_id": null,
"user_id": null
}
}
```