Hi All,
I`ve recently bought the ICasa Pulse 8S pad
I have been able to set it up in Deconz to control my lights.
Picture: left to right: ICasa Pulse 8S device, Set up in Phoscon/deconz, Device in Home Assistant
Now I am looking to migrate everything from deconz to hassio. My use case is that i want to call scene`s that not only contain zigbee lights, but also device from my other integrations.
Now in Home assistant the 8 buttons are not recorded.
If i want to create an automation i cannot select them.
using devtools i can listen to the deconz_event to get the following data:
type or paste code here
Event 10 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 8002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:17.915794+00:00",
"context": {
"id": "de21cc6fc8ab4b9bbf801d3af67dfd17",
"parent_id": null,
"user_id": null
}
}
Event 9 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 7002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:15.864396+00:00",
"context": {
"id": "f9853fb5a8f54ae593668a142b87b4e1",
"parent_id": null,
"user_id": null
}
}
Event 8 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 6002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:14.268461+00:00",
"context": {
"id": "289c97e1bbb94220b6586a378c961fe8",
"parent_id": null,
"user_id": null
}
}
Event 7 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 5002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:12.717985+00:00",
"context": {
"id": "dfab71b7c3ab412399138b3dbfeb30bd",
"parent_id": null,
"user_id": null
}
}
Event 6 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 4002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:10.847720+00:00",
"context": {
"id": "c59622b20d8f4d29bdb6a0e97fa964c4",
"parent_id": null,
"user_id": null
}
}
Event 5 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 3002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:09.536365+00:00",
"context": {
"id": "6a082ee55d774141960d908c172bdbf4",
"parent_id": null,
"user_id": null
}
}
Event 4 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 2002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:07.866842+00:00",
"context": {
"id": "d10a26a1bfce43998bd1751e7a0a5aae",
"parent_id": null,
"user_id": null
}
}
Event 3 fired 7:58 PM:
{
"event_type": "deconz_event",
"data": {
"id": "pulse_8s_woonkamer",
"unique_id": "cc:cc:cc:ff:fe:26:a1:6d",
"event": 1002
},
"origin": "LOCAL",
"time_fired": "2020-05-18T17:58:06.338655+00:00",
"context": {
"id": "4838c9f534b64f7cba7547aedec523b0",
"parent_id": null,
"user_id": null
}
}
where the event match the labels on the ICasa Pulse 8s buttons:
event 10 = S6
event 9 = S5
event 8 = S4
event 7 = S3
event 6 = S2
event 5 = S1
event 4 = I
event 3 = 0
Is there any way i could help to get this device supported? Or added to the Deconz integration?
EDIT:
I figured i could just use event: deconz_event as trigger to start my automations.