Hello,
During my udpate to OH 4.3.2 I want to re-write the Alexa Voice control.
I was using the approach with proxy item which worked like a charm for years.
Now, I wanted to get rid of the proxy items and rules and implement the smart approach.
Problem statement
OH correctly receives the UP, DOWN events both from the Alexa App UI and Voice recognition.
The STOP command works in the Alexa App UI and triggers OH item.
The STOP command is not recognized by Alexa.
Alexa responds with the message “I do not know how to help” (German: Ich weiss nicht wie ich Dir dabei helfen kann)
It seems as if Alexa (or the skill?) does not recognize the STOP command for shutters
The commands for UP, DOWN, OPEN, CLOSE are working OK
In the Alexa app, I can send the STOP command succesfully and the shutter stops.
Alexa voice recognition does not recognize the action “STOP” at all
Item definition
I tried some alternatives, all of them work, but the STOP command is NOT recognized
// This is the simplest way - it works for UP+DOWN but not STOP
Rollershutter VC_OG2_Azi_Fenster_RolloEndPoint "Arbeitszimmer Fenster Rolladen" {alexa="Shutter" , channel="knx:device:bridge:generic:Shutter_OG2_Arbeitszimmer_Fenster" , autoupdate="false" }
// This is more descriptive - it works it works for UP+DOWN but not STOP
Rollershutter Azi_Fenster_RolloEndPoint "Arbeitszimmer Fenster Rolladen" {alexa="Blind.RangeValue" [capabilityNames="@Setting.Position", supportedCommands="UP=@Value.Up:@Value.Open,DOWN=@Value.Down:@Value.Close,STOP=@Value.Stop", actionMappings="Close=DOWN,Open=UP,Lower=DOWN,Raise=UP,Stop=STOP"], channel="knx:device:bridge:generic:Shutter_OG2_Arbeitszimmer_Fenster" , autoupdate="false" }
Any thoughts or hints how the shutter command “STOP” can be recognized by Alexa?
Kind regards