Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse
titleactions

if (heating == "normal") {

    temp = 70;

}

else {

    temp = 50;

}

Expected results

...


Associated string variables

When saving the program, for each mode and state block an associated string variable will be created.

Running the state machine

As the hour variable changes its value, the time will toggle between "daytime" and "nighttime".

...