Fibaro FGS-223 Scene Setup Troubleshooting

Hi everyone, I’ve been trying to set up a scene on my Fibaro FGS-223 using double-click, but I’m hitting a wall. I’ve followed the forum guides and set up the SCENE_Schalter item with the appropriate channel and parameters in HABmin. Here’s what my rule looks like:

rule
rule “Test”
when Item SCENE_Schalter received update
then
logInfo(“FILE”, "Status " + SCENE_Schalter)
logInfo(“FILE”, “Scene #” + SCENE_Schalter.state)
if (SCENE_Schalter.state == 99) {
logInfo(“FILE”, “Hello World.”)
}
end

I expected it to log the status, scene number, and then print “Hello World!” when the state is 99. However, it only logs the status and says “Scene #NULL”. I’m double-clicking the switch physically, but it doesn’t seem to register the scene number.

Has anyone encountered this issue before? Any tips on what I might be missing? I’d really appreciate any help or suggestions. Thanks in advance!