Finite State Machines Lab 6 In this lab, we will design a simple state machine that imitates a traffic light. The state machine should do the following: Start in the "green" state. Once switch S1 is pressed, the state machine should transition to the "yellow" state. After a certain period of time, the state machine should transition to the "red" state. Finally, after another certain period of time, the state machine should transition back to the "green" state. What are the states that the traffic light state machine should transition through?
1) Green, Yellow, Red
2) Red, Yellow, Green
3) Green, Red, Yellow
4) Yellow, Green, Red