Last active
April 30, 2021 09:41
-
-
Save ljx213101212/051269b94512888f30cdc8dafc6725f4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const holdMachine = Machine({ | |
id: "hold", | |
type: "parallel", | |
states: { | |
clutch: { | |
initial: "off", | |
states: { | |
on: { | |
on: { | |
CLUTCH_OFF: "off" | |
} | |
}, | |
off: { | |
on: { | |
CLUTCH_ON: "on", | |
}, | |
}, | |
}, | |
}, | |
otfs: { | |
initial: "off", | |
states: { | |
on: { | |
on: { | |
OTFS_OFF: "off" | |
} | |
}, | |
off: { | |
on: { | |
OTFS_ON: "on", | |
}, | |
} | |
}, | |
}, | |
otfm: { | |
initial: "off", | |
states: { | |
on: { | |
on: { | |
OTFM_OFF: "off" | |
} | |
}, | |
off: { | |
on: { | |
OTFM_ON: "on" | |
} | |
} | |
} | |
} | |
}, | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment