FGR-222 Scene issue

Hi,

Running on PI3b for a while.
Today added 2 new FGR-222 and updated items/rules correspondingly.

No sure why, but now all my scene’s not working
changed z-wave to debug, and seems like the controller gets the scene, but the channel doesn’t change to it, and there not the item and my rules not working
this is happening for all my roller-shutters.

Tried reboot, tried to remove and re-add one device for example, stay the same :frowning:

2019-08-30 00:02:28.057 [DEBUG] [WaveSerialHandler$ZWaveReceiveThread] - Receive Message = 01 0A 00 04 00 04 04 2B 01 0E 00 D5
2019-08-30 00:02:28.068 [DEBUG] [nal.protocol.ZWaveTransactionManager] - processReceiveMessage input 0<>128 : Message: class=ApplicationCommandHandler[4], type=Request[0], dest=4, callback=0, payload=00 04 04 2B 01 0E 00
2019-08-30 00:02:28.074 [DEBUG] [nal.protocol.ZWaveTransactionManager] - Received msg (0): Message: class=ApplicationCommandHandler[4], type=Request[0], dest=4, callback=0, payload=00 04 04 2B 01 0E 00
2019-08-30 00:02:28.080 [DEBUG] [nal.protocol.ZWaveTransactionManager] - lastTransaction null
2019-08-30 00:02:28.084 [DEBUG] [nal.protocol.ZWaveTransactionManager] - NODE 4: Application Command Request (ALIVE:DONE)
2019-08-30 00:02:28.089 [DEBUG] [ng.zwave.internal.protocol.ZWaveNode] - NODE 4: resetResendCount initComplete=true isDead=false
2019-08-30 00:02:28.094 [DEBUG] [ng.zwave.internal.protocol.ZWaveNode] - NODE 4: Incoming command class COMMAND_CLASS_SCENE_ACTIVATION, endpoint 0
2019-08-30 00:02:28.099 [DEBUG] [ng.zwave.internal.protocol.ZWaveNode] - NODE 4: SECURITY not supported
2019-08-30 00:02:28.103 [DEBUG] [tocol.commandclass.ZWaveCommandClass] - NODE 4: Received COMMAND_CLASS_SCENE_ACTIVATION V1 SCENEACTIVATION_SET
2019-08-30 00:02:28.108 [DEBUG] [ass.ZWaveSceneActivationCommandClass] - NODE 4: Scene activation: Scene 14, Time 0
2019-08-30 00:02:28.111 [DEBUG] [nal.protocol.ZWaveTransactionManager] - NODE 4: Commands processed 1.
2019-08-30 00:02:28.114 [DEBUG] [nal.protocol.ZWaveTransactionManager] - NODE 4: Checking command org.openhab.binding.zwave.internal.protocol.ZWaveCommandClassPayload@1add573.
2019-08-30 00:02:28.117 [DEBUG] [nal.protocol.ZWaveTransactionManager] - Transaction completed - outstandingTransactions 0
2019-08-30 00:02:28.119 [DEBUG] [nal.protocol.ZWaveTransactionManager] - Transaction completed - outstandingTransactions 0
2019-08-30 00:02:28.122 [DEBUG] [nal.protocol.ZWaveTransactionManager] - ZWaveReceiveThread queue empty
2019-08-30 00:02:28.125 [DEBUG] [nal.protocol.ZWaveTransactionManager] - Transaction SendNextMessage 0 out at start. Holdoff false.

You need to trigger on the correct scene number:

Item YourItem received update XY

and you need to enable scenes:

grafik

I don’t see that the item has changed
my rules are monitoring item that associated with the thing
Number LRWRS_Scene “Living Room West Roller Shutter” {channel=“zwave:device:23d32199:node4:scene_number”}

rule “LRWRS Switch”
when
Item LRWRS_Scene received update
then
if (LRWRS_Scene.state == 14) {

and scene is enabled, i think otherwise I won’t see the logs I’ve attached.

There is your problem.
Make sure your device is online, does have connection to the controller, associations are set to the controller … all the basic things.
I have several FGR222 and they are working fine, so it is not an issue with the binding.

I have noticed that the scene number can vary a bit depending on how you click.
It can be in your case 14 or 14.0.
On top of what sihui said I would change the code to:

rule “LRWRS Switch”
when
    Item LRWRS_Scene received update
then
    val int scene = (LRWRS_Scene.state as DecimalType).intValue
    if (scene  == 14) {
      

Regards S

1 Like

It is, everything is configured as it should, I think atleast
I have one FGR222 which works fine, and there after scene pressed, the channel gets update, whole the othera won’t ipdate the scene number.

Comparing everything between the working and not working one should solve your problem.

1 Like

I’ve deleted all the Rollershutters and added from scratch, same rule same items. Everythinf is fine now.
Thanks ppl