LZW36 OpenZwave Beta Scene Issues

Has anyone had any luck using the scene capabilities of this switch in the new OpenZwave beta? I’m not sure where the problem lies at this point, but I can see the scene events in the logs followed by an invalid index error. Ultimately, no events are being published.

Is the following section commented out in your config file? OZW 1.4 does not auto-detect scenes, so it needs to be specified in the config, but OZW 1.6 does auto-detect scenes. If the following scion is not commented out in 1.6, it might cause the errors you are seeing.

  <!-- Central Scene Reports -->
  <!-- Commented out for ozw 1.6 (also untested)
  <CommandClass id="91">
    <Instance index="1" />
      <Value type="int" genre="system" instance="1" index="0" label="Scene Count" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="2" />
      <Value type="int" genre="user" instance="1" index="1" label="Light Dim Up" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
      <Value type="int" genre="user" instance="1" index="2" label="Light Dim Down" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />      
      <Value type="int" genre="user" instance="1" index="3" label="Light Button" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
      <Value type="int" genre="user" instance="1" index="4" label="Fan Dim Up" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />      
      <Value type="int" genre="user" instance="1" index="5" label="Fan Dim Down" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
      <Value type="int" genre="user" instance="1" index="6" label="Fan Button" units="" read_only="false" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />      
  </CommandClass>
  -->

Thank you! That was indeed the problem. It seems odd that it isn’t commented out by default since the file is otherwise formatted for OZW 1.6. I was noticing other issues as well where certain scene events were actually causing OZW to crash altogether. All is working well now though with that section commented out and letting things re-initialize.