Skip to content

Instantly share code, notes, and snippets.

@KevinWMatthews
Created December 4, 2019 13:40
Show Gist options
  • Save KevinWMatthews/d0cb50697aebcf74291a1b4841849cd8 to your computer and use it in GitHub Desktop.
Save KevinWMatthews/d0cb50697aebcf74291a1b4841849cd8 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'sensor',
initial: 'inactive',
states: {
inactive: {
on: {
HW_HIGH: 'active'
}
},
active: {
on: {
HW_LOW: 'inactive'
},
entry: ['activateHw'],
exit: ['deactivateHw'],
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment