Hello
I’d like to open or close blind zwave controlled with Alexa, but I dont know why only one blind is moving with voice commands:
items:
Group finestre_sala_tv "Finestre sala tv" {alexa="Blind"}
Rollershutter finestra_st_1 "Finestra sala tv destra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node13:blinds_control1", alexa="Blind"}
Rollershutter finestra_st_2 "Finestra sala tv sinistra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node14:blinds_control1", alexa="Blind"}
When defining a group endpoint, only one specific attribute capability per group can be defined, except for generic capabilities.
For your use case, a state derived group, configured as a single endpoint, should be used instead. That way you can control the group and its members configured for Alexa separately.
Group:Rollershutter finestre_sala_tv "Finestre sala tv" {alexa="Blind"}
Rollershutter finestra_st_1 "Finestra sala tv destra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node13:blinds_control1", alexa="Blind"}
Rollershutter finestra_st_2 "Finestra sala tv sinistra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node14:blinds_control1", alexa="Blind"}
You can also only configure the group for Alexa while removing the metadata configuration for each members. In this case, you would just control the group of blinds in Alexa.
Group:Rollershutter finestre_sala_tv "Finestre sala tv" {alexa="Blind"}
Rollershutter finestra_st_1 "Finestra sala tv destra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node13:blinds_control1"}
Rollershutter finestra_st_2 "Finestra sala tv sinistra" (finestre_sala_tv) {channel="zwave:device:zwaveid:node14:blinds_control1"}