fpp/compiler/tools/fpp-to-cpp/test/component/ActiveExternalStateMachines_S1.plantuml
Rob Bocchino 0893f45997 Revise code gen tests
Rename ActiveStateMachines to ActiveExternalStateMachines
2024-10-09 16:04:06 -07:00

23 lines
296 B
Plaintext

@startuml
[*] --> ON : /initLed()
state ON {
ON:Entry: turnLedOn()
}
state OFF {
OFF:Entry: turnLedOff()
}
state WAITING {
WAITING:Entry: blinkLed()
}
ON --> OFF : RTI [g1()]/a1()
OFF --> ON : RTI [g2(e)]/a2(e)
ON --> WAITING : WAIT /a3(e)
OFF --> WAITING : WAIT /a4(e)
@enduml