Skip to content
#

statechart

Here are 63 public repositories matching this topic...

JonnyWaffles
JonnyWaffles commented Sep 4, 2019

The Python Async Actions example is confusing in my humble opinion. I'm not entirely sure how this functionality works.

If you run the code in the example, no output is displayed and the application immediately ends. I believe this occurs because the main thread terminates and the remaining threads are marked a

elcritch
elcritch commented Jun 8, 2018

Great little project! I've been reading through it and think I'll be able to use for an upcoming project. Ideally I'd like to try adding some support for SCXML. Looks like almost everything needed is present aside from the variables in events.

However, I haven't been able to understand how the queue interacts with the events. Is it all supposed to be driven from the outside, like in the `test_

michaellenaghan
michaellenaghan commented Jan 6, 2020

The page has this snippet:

green: {
  onEntry: "startHttpRequest",
  onExit: "cancelHttpRequest",
  ...
}

followed shortly thereafter by this snippet:

function transition(event, data) {
  currentState = stateMachine.transition(currentState, event, data);
  field.classList.value = currentState.value;
  currentState.actions.forEach(item => window[item]());
}

T

tkutz
tkutz commented Nov 6, 2019

We have two tutorials, a 5-minute and a comprehensive one, both not explaining the statechart elements but only how to create them step by step.

On the other hand there is a basic tutorial example (Light switch example series) which explains some statechart concepts but not how to work with the editor.

The idea is to have both worlds in one chapter: a building-up explanation of statechart co

fungiboletus
fungiboletus commented Nov 14, 2018
  • Up to date quick start
  • Single place to find helpful resources
  • More examples
  • Document annotations (see #215)
  • Explain more what ThingML is, can do, and what it can't do
  • How to contribute documentation
  • Syntax / keywords documentation
  • Make a website ?
  • Build an interactive tutorial that is actually cool, similar to [tryruby](https:/

Improve this page

Add a description, image, and links to the statechart topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the statechart topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.