HM-LC-Bl1-FM Rollershutter does not operate update by level change

I use openhab with homegear. The connected rollershutter works fine over the user interface. No Problems. But when I want to open or close by a rule using the postUpdate command this got transferred to openhab and is shown in the user interface, but the shutter itself does not move.

Here my openhab rule I expect to work. For sure I get the logentry, that it now opens. any Idea?

[code]Rollershutter Rollo_EG_1 “Rollo Wohnzimmer [%d %%]” {homematic=“address=xxxxxxx, channel=1, parameter=LEVEL”}

rule "UseCase6: Open Rollo automatic in the morning"
when
Item sensorInside2 changed from OPEN to CLOSED
then
logInfo(“UseCase6”, “Motion detected in living room. Check to open Rollo. AlarmStatus 0=={}, RolloStatus 100=={}, Darkness 150<{}”, AlarmCurrentStatus.state, Rollo_EG_1.state, brightness3.state)
if (AlarmCurrentStatus.state == 0 && Rollo_EG_1.state == 100 && brightness3.state > 150)
{
logInfo(“UseCase6”, “Start opening shutter”)
postUpdate(Rollo_EG_1, 50)
}
end[/code]

I think the problem is based on postUpdate. postUpdates does not send a command to the actor, it only updates the value on the openhab bus.
Try senndCommand instead.

Thomas

SOLVED!!!

Thanks Thomas for your excellent remark :smiley: