andrethuber / optaSignalTelegraf

0 stars 1 forks source link

State diagram #4

Open berland opened 1 month ago

berland commented 1 month ago
stateDiagram-v2
 [*] --> waitingForHeartBeat : booting
  waitingForHeartBeat-->ready : Received 'h'
  ready-->waitAck : Button pressed
  ready --> ready : Received 'h'
  ready-->inputLocked
  ready-->actLocked : error happened
  ready --> waitingForHeartBeat : received 'r'
  waitAck --> ready : received 'a'
  waitAck --> actLocked : timeout
  inputLocked --> ready : timeout
andrethuber commented 1 month ago
stateDiagram-v2
 [*] --> waitingForHeartbeat : booting
  waitingForHeartbeat-->ready : Received 'h'
  ready-->waitAck : Button pressed
  ready --> ready : Received 'h'
  ready-->inputLocked : Recived 't'
  ready-->actLocked : error happened
  ready-->actLocked : Recieved 'e', or 'l'
  waitAck --> ready : received 'a'
  waitAck --> actLocked : timeout
  inputLocked --> ready : timeout
  actLocked --> waitingForHeartbeat : recieved 'r'