Setting scenes on Z-Wave Wall Switch ZHC5010

sudo journalctl -u home-assistant@pi -f worked for me!

On/Off press yields:
Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=255
Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=0

Enabling the following automation to toggle a HUE light! So far so good!

- alias: Lights Test - ON
  trigger:
     platform: event
     event_type: zwave.node_event
     event_data:
       object_id: unknown_id0234_unknown_type0003_id010a_5
       basic_level: 0
  action:
    service: light.turn_on
    entity_id: light.sofabord

- alias: Lights Test - OFF
  trigger:
     platform: event
     event_type: zwave.node_event
     event_data:
       object_id: unknown_id0234_unknown_type0003_id010a_5
       basic_level: 255
  action:
    service: light.turn_off
    entity_id: light.sofabord

But each of the four buttons give the same result!

In the Home Assistant Dev-State, the following are listed under “Current Entities”

switch.unknown_id0234_unknown_type0003_id010a_switch_5
switch.unknown_id0234_unknown_type0003_id010a_switch_5_2
switch.unknown_id0234_unknown_type0003_id010a_switch_5_3
switch.unknown_id0234_unknown_type0003_id010a_switch_5_4
switch.unknown_id0234_unknown_type0003_id010a_switch_5_5

From the “States” pane, under “Switch” I can toggle each node on and off (the LED on the device turns on and off)

The manual says:
“In order to better represent the various functions of ZHC5010 and provide a better visualization of the different Z-Wave network control, then ZHC5010 support for Multi Channel Command Class, which makes ZHC5010 will be presented as multiple logical units (End Points), in instead of only one device in the network control that supports Multi Channel Command Class.
For example. Fibaro Home Center 2 will ZHC5010 be displayed as 6 units, a Master and 5 Slave units where the Master is the Z-Wave device (Root Device) (shown as a cardboard box), a base unit (End Point 0) and 4 logical units (End Point 1 to 4).
In other systems simply acting ZHC5010 with a base unit 4 and the logical units. The base unit is a kind of intersection of the logical units and to some systems, only the basic unit in which to link units into association groups in which the other systems can also be (should) be done in the logical units (for example in Fibaro Home Center 2).
If the Z-Wave network controller does not support Multi Channel Command Class will ZHC5010 only be represented as a single unit, which corresponds to the base unit containing the full functionality.
The logical units 4 represents a division of the ZHC5010 in 4 switches each of which may be independent of one another.”

Is HA capable of handling Multi Channel Command Class?
Any suggestions for next step?

I have attached the log from journalctl below as described by JBARDI.

– Logs begin at Wed 2016-09-14 06:58:51 UTC. –
–Button #2
–Press 1
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=255>
07:27:55 hass[560]: INFO:hass.components.automation:Executing Lights Test - OFF
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - OFF, domain=automation>
07:27:55 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Running script
07:27:55 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Executing step call service
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_off, domain=light, service_call_id=1978693712-13, service_data=entity_id=[‘light.sofabord’]>
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:27:55.502941+02:00>, old_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:26:58.994968+02:00>, entity_id=light.sofabord>
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-13>
07:27:55 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:27:55.529405+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, old_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:26:56.050294+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, entity_id=automation.lights_test__off>
–Press 2
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=0>
07:28:04 hass[560]: INFO:hass.components.automation:Executing Lights Test - ON
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - ON, domain=automation>
07:28:04 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Running script
07:28:04 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Executing step call service
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_on, domain=light, service_call_id=1978693712-14, service_data=entity_id=[‘light.sofabord’]>
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:28:04.538593+02:00>, old_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:27:55.502941+02:00>, entity_id=light.sofabord>
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-14>
07:28:04 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:04.556458+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, old_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:26:59.013274+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, entity_id=automation.lights_test__on>

–Button #3
–Press 1
07:28:10 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=0>
07:28:10 hass[560]: INFO:hass.components.automation:Executing Lights Test - ON
07:28:10 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - ON, domain=automation>
07:28:10 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Running script
07:28:10 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Executing step call service
07:28:10 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_on, domain=light, service_call_id=1978693712-15, service_data=entity_id=[‘light.sofabord’]>
07:28:10 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-15>
07:28:10 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:10.670782+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, old_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:04.556458+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, entity_id=automation.lights_test__on>
–Press 2
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=255>
07:28:13 hass[560]: INFO:hass.components.automation:Executing Lights Test - OFF
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - OFF, domain=automation>
07:28:13 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Running script
07:28:13 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Executing step call service
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_off, domain=light, service_call_id=1978693712-16, service_data=entity_id=[‘light.sofabord’]>
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:28:13.228651+02:00>, old_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:28:04.538593+02:00>, entity_id=light.sofabord>
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-16>
07:28:13 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:28:13.245239+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, old_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:27:55.529405+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, entity_id=automation.lights_test__off>

–Button #4
–Press 1
07:28:17 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=255>
07:28:17 hass[560]: INFO:hass.components.automation:Executing Lights Test - OFF
07:28:17 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - OFF, domain=automation>
07:28:17 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Running script
07:28:17 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Executing step call service
07:28:17 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_off, domain=light, service_call_id=1978693712-17, service_data=entity_id=[‘light.sofabord’]>
07:28:17 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-17>
07:28:17 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:28:17.600723+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, old_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:28:13.245239+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, entity_id=automation.lights_test__off>
–Pres2
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=0>
07:28:19 hass[560]: INFO:hass.components.automation:Executing Lights Test - ON
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - ON, domain=automation>
07:28:19 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Running script
07:28:19 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Executing step call service
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_on, domain=light, service_call_id=1978693712-18, service_data=entity_id=[‘light.sofabord’]>
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:28:19.604495+02:00>, old_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:28:13.228651+02:00>, entity_id=light.sofabord>
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-18>
07:28:19 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:19.624285+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, old_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:10.670782+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, entity_id=automation.lights_test__on>

–Button #1
–Press 1
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=255>
07:28:24 hass[560]: INFO:hass.components.automation:Executing Lights Test - OFF
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - OFF, domain=automation>
07:28:24 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Running script
07:28:24 hass[560]: INFO:hass.helpers.script:Script Lights Test - OFF: Executing step call service
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_off, domain=light, service_call_id=1978693712-19, service_data=entity_id=[‘light.sofabord’]>
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state switch.unknown_id0234_unknown_type0003_id010a_switch_5=on; friendly_name=Unknown: id=0234 Unknown: type=0003, id=010a Switch, node_id=5 @ 2016-09-14T09:28:24.437636+02:00>, old_state=<state switch.unknown_id0234_unknown_type0003_id010a_switch_5=off; friendly_name=Unknown: id=0234 Unknown: type=0003, id=010a Switch, node_id=5 @ 2016-09-14T09:26:58.907806+02:00>, entity_id=switch.unknown_id0234_unknown_type0003_id010a_switch_5>
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:28:24.516294+02:00>, old_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:28:19.604495+02:00>, entity_id=light.sofabord>
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-19>
07:28:24 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:28:24.530471+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, old_state=<state automation.lights_test__off=on; last_triggered=2016-09-14T09:28:17.600723+02:00, friendly_name=Lights Test - OFF @ 2016-09-14T09:25:59.233739+02:00>, entity_id=automation.lights_test__off>
–Press 2
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event zwave.node_event[L]: object_id=unknown_id0234_unknown_type0003_id010a_5, basic_level=0>
07:28:27 hass[560]: INFO:hass.components.automation:Executing Lights Test - ON
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event logbook_entry[L]: message=has been triggered, name=Lights Test - ON, domain=automation>
07:28:27 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Running script
07:28:27 hass[560]: INFO:hass.helpers.script:Script Lights Test - ON: Executing step call service
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event call_service[L]: service=turn_on, domain=light, service_call_id=1978693712-20, service_data=entity_id=[‘light.sofabord’]>
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state switch.unknown_id0234_unknown_type0003_id010a_switch_5=off; friendly_name=Unknown: id=0234 Unknown: type=0003, id=010a Switch, node_id=5 @ 2016-09-14T09:28:27.431557+02:00>, old_state=<state switch.unknown_id0234_unknown_type0003_id010a_switch_5=on; friendly_name=Unknown: id=0234 Unknown: type=0003, id=010a Switch, node_id=5 @ 2016-09-14T09:28:24.437636+02:00>, entity_id=switch.unknown_id0234_unknown_type0003_id010a_switch_5>
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state light.sofabord=on; supported_features=127, brightness=123, xy_color=[0.2926, 0.224], friendly_name=Sofabord, color_temp=153, rgb_color=(203, 175, 253) @ 2016-09-14T09:28:27.508651+02:00>, old_state=<state light.sofabord=off; supported_features=127, friendly_name=Sofabord @ 2016-09-14T09:28:24.516294+02:00>, entity_id=light.sofabord>
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event service_executed[L]: service_call_id=1978693712-20>
07:28:27 hass[560]: INFO:hass.core:Bus:Handling <Event state_changed[L]: new_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:27.530793+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, old_state=<state automation.lights_test__on=on; last_triggered=2016-09-14T09:28:19.624285+02:00, friendly_name=Lights Test - ON @ 2016-09-14T09:25:59.223023+02:00>, entity_id=automation.lights_test__on>

Best regards,
Tonkin