Comfort Automation/ Security System Forums
"Use Branch Actions" in Comfort I Ultra - Printable Version

+- Comfort Automation/ Security System Forums (https://www.comfortforums.com)
+-- Forum: Support (https://www.comfortforums.com/forum-2.html)
+--- Forum: Problems & Troubleshooting (https://www.comfortforums.com/forum-36.html)
+---- Forum: Comfort I Issues (https://www.comfortforums.com/forum-101.html)
+---- Thread: "Use Branch Actions" in Comfort I Ultra (/thread-1596.html)



- ident - 09-16-2009

This applies to Comfort I and Comfigurator 2 only

In Comfort I from firmware 4.233 onwards please check the box \"Use Branch Actions\" in Configuration > Modules & Settings if you use Comfigurator 2. This allows If/Then actions to work correctly for nested If/Then conditions.

For example, see the Response below. If Use Branch Actions is not enabled then the response will not work as expected.

If you have Comfort I Firmware < 4.233 and you nbeed to code aq complex nested If/Then Response, then you are advised to get a firmware upgrade to 4.234 which is the last released Ultra I firmware

If SecurityMode = SecurityOff Then
AutoArm AwayMode
    Else
     If SecurityMode = AwayMode Then
       If AlarmState < Alarm Then
          AutoArm SecurityOff
       End If
      End If
    If SecurityMode = NightMode Then
        If AlarmState < Alarm Then
        AutoArm SecurityOff
     End If
   End If
   If SecurityMode = VacationMode Then
        If AlarmState < Alarm Then
        AutoArm SecurityOff
        End If
    End If
  End If