Hi @HermannVI, I would like to explain my design philosophy here which causes the extra devices (ex. GoControl) to show up. The blueprint can be linked to any sensor devices from ZwaveJS because thatās where HA/ZwaveJS accept central scene notification events. For the sake of simplicity Iām showing all sensors because I wanted this to be very flexible and not critical to have a āguest listā of accepted devices. Looking for any guidance from the community if thereās a better way to filter a blueprint based on the presence of Zwave central scene notification. Otherwise, Iām leaning on end users to know which device they should be using.
Regarding the config button on your black switch, weāll need to configure a separate blueprint because the device type and signal likely differ from the template Iāve defined here. I can assist with a separate blueprint if you can paste back some output generated from the developer tools.
How to capture events from developer tools
- Enable the developer tools for your login
- Navigate to the developer tools
- Click on the Events tab
- Enter the asterisk character inside the Event to subscribe to input box
- Click on the Start listening link
- Use the config button on the switch
- Copy/paste whatever shows up from there
Example of what a captured events might appear as:
Event 1 fired 7:34 PM:
{
"event_type": "state_changed",
"data": {
"entity_id": "switch.adaptive_lighting_living_room",
"old_state": {
"entity_id": "switch.adaptive_lighting_living_room",
"state": "on",
"attributes": {
"brightness_pct": 10,
"color_temp_kelvin": 1000,
"color_temp_mired": 1000,
"rgb_color": [
255,
67.92041905680745,
0
],
"xy_color": [
0.673,
0.322
],
"hs_color": [
16.016,
98.431
],
"sun_position": 0.08193712311882095,
"manual_control": [],
"friendly_name": "Adaptive Lighting: Living room",
"icon": "mdi:theme-light-dark"
},
"last_changed": "2021-03-27T19:26:51.030187+00:00",
"last_updated": "2021-03-31T23:32:56.527220+00:00",
"context": {
"id": "49987078f4af147df54d1fe195b6d461",
"parent_id": null,
"user_id": null
}
},
"new_state": {
"entity_id": "switch.adaptive_lighting_living_room",
"state": "on",
"attributes": {
"brightness_pct": 10,
"color_temp_kelvin": 1000,
"color_temp_mired": 1000,
"rgb_color": [
255,
67.92041905680745,
0
],
"xy_color": [
0.673,
0.322
],
"hs_color": [
16.016,
98.431
],
"sun_position": 0.07422283057998613,
"manual_control": [],
"friendly_name": "Adaptive Lighting: Living room",
"icon": "mdi:theme-light-dark"
},
"last_changed": "2021-03-27T19:26:51.030187+00:00",
"last_updated": "2021-03-31T23:34:26.527901+00:00",
"context": {
"id": "39c5cdb93f7d893c0d24f235f45cb275",
"parent_id": null,
"user_id": null
}
}
},
"origin": "LOCAL",
"time_fired": "2021-03-31T23:34:26.527901+00:00",
"context": {
"id": "39c5cdb93f7d893c0d24f235f45cb275",
"parent_id": null,
"user_id": null
}
}