Sequential tasks

I am extremely new to arduino, and am developing an escape room. My designer just graduated from college and is out of the loop for a few months, so I wanted to learn. Our escape room will be sequential. For example the first task will be a phone call with the clue, activating the next task, the second task will be to press buttons in the correct sequence, the third task will be Morse code, and the forth will be the exit code.

Can this be done with just one arduino or do I need multiple?

May the ‘fourth’ be with you :slightly_smiling_face:

Just one.

You may find this useful: Void loop inside a switch case? - #25 by J-M-L

1 Like

:rofl: :rofl: :sweat_smile:

Yes. I would use a state machine.

2 Likes

Search: arduino escape room phone clue button press morse code combination

https://www.planetarduino.org/?cat=4836

It might be possible with one but it might be easier with multiple. It all depends on whether the multiple Arduino would need to communicate with each other in any way. If they are completely independent of each other, then using multiple Arduino may be easier.