Skip to content

Instantly share code, notes, and snippets.

@dheeptuck
Last active July 7, 2019 14:57
Show Gist options
  • Save dheeptuck/d7e639f6e00cdb577337a2db25cc903f to your computer and use it in GitHub Desktop.
Save dheeptuck/d7e639f6e00cdb577337a2db25cc903f to your computer and use it in GitHub Desktop.
stStmRow stStm = {
{stateIdle     , EVT_BUTTON_PRESSED, stateCrushBean },
{stateCrushBean, EVT_BEAN_CRUSHED , stateHeatMilk },
{stateCrushBean, EVT_NO_BEAN       , stateError     },
{stateHeatMilk , EVT_MILK_HEATED   , stateMixWater },
{stateHeatMilk , EVT_NO_MILK       , stateError     },
{stateMixWater , EVT_WATER_MIXED   , stateDispenseCofee},
{stateMixWater , EVT_NO_WATER     , stateError     }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment