Rollershutter with Alexa inverted

Hello,
I created an item for my zwave rollershutter as Dimmer

Dimmer Serranda_Cucina_Alexa "Serranda cucina" ["Lighting"] {channel="<mydeviceif>:node5:blinds_control"}

But when I use with Alexa the command are inverted.
For example if I say Alexa close the Serranda Cucina it open it…
How can I revert the use?

There is an option in the blinds_control channel named “invert percentage”

Thank you for the answer,
yes I used it before because I inverted it, but creating a new items only for Alexa using that channel, isn’t possible to customize that item (without making a custom role)

Not that I know of. I am using it this way:

Rollershutter FibFGR222_Kitchen_East "Küche Ost [%d %%]" { channel="zwave:device:uzb:node11:blinds_control" }
Dimmer FibFGR222_Kitchen_East_Alexa "Küche Ost" [ "Lighting" ]

rule "Jalousie Küche Ost"
when
	Item FibFGR222_Kitchen_East_Alexa received command
then
	FibFGR222_Kitchen_East.sendCommand(FibFGR222_Kitchen_East_Alexa.state.toString)
end

If in the Dimmer I don’t put a channel Alexa answer me “the item isn’t answering”

You need to search for new devices on Alexa so it picks up the changes.

hello
any news about alexa inversion?
I would try this item:

Rollershutter iTapparellaStanzaGiochi_1 "iTapparellaStanzaGiochi_1 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="Switchable" , channel="openwebnet:bus_automation:99eef840:shutter" }
Rollershutter iTapparellaStanzaGiochi_1 "iTapparellaStanzaGiochi_1 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="Lighting" , channel="openwebnet:bus_automation:99eef840:shutter" }
Rollershutter iTapparellaStanzaGiochi_2 "iTapparellaStanzaGiochi_2 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="PercentageController.percentage" [invert percentage=true] , channel="openwebnet:bus_automation:99eef840:shutter"}

Dimmer iTapparellaStanzaGiochi_1 "iTapparellaStanzaGiochi_1 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="Switchable" , channel="openwebnet:bus_automation:99eef840:shutter" }
Dimmer iTapparellaStanzaGiochi_1 "iTapparellaStanzaGiochi_1 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="Lighting" , channel="openwebnet:bus_automation:99eef840:shutter" }
Dimmer iTapparellaStanzaGiochi_2 "iTapparellaStanzaGiochi_2 [%.0f %%]" <rollershutter>  (Gruppo_Tapparelle,Gruppo_Camera_Bambine) {alexa="PercentageController.percentage" [invert percentage=true] , channel="openwebnet:bus_automation:99eef840:shutter"}

1 Like