6

I'm looking for an example of a simple FSM implemented in Erlang using the gen_fsm from OTP.

2 Answers2

8

I found this tutorial really helpful -

http://spawnlink.com/articles/an-introduction-to-gen_fsm-erlybanks-atm/index.html

Roger Lipscombe
  • 89,048
  • 55
  • 235
  • 380
spkhaira
  • 821
  • 7
  • 18
5

You can also refer to the official erlang documentation.

http://www.erlang.org/doc/design_principles/fsm.html

The locked door example reported in the link is quite easy to understand