/*
Sketch: AuCP_Traffic-Light-With-Transition-Timer.ino
Created: 1-May-2023
Author: MicroBeaut (μB)
GitHub: https://github.com/MicroBeaut/Finite-State#traffic-light-with-transition-timer-trans_timer
*/
#include "FiniteState.h"
#define redLightPin 5
#define yellowLightPin 4
#define greenLightPin 3
uint8_t lightPins[] = {redLightPin, greenLightPin, yellowLightPin}; // Define an array of light pins.
const uint8_t numberOfLights = sizeof(lightPins) / sizeof(uint8_t); // Calculate the number of lights.
/*
____________________________________________________________________________________________________________________________________________________
| State-Transition Table |
|___________________________________________________________________________________________________________________________________________________|
| | | | Next-State | Next-State | | | Delay-Time | |
| State | Id | Predicate | Fase | True | Process | Event | (milliseconds) | Timer-Type |
|_____________|_______|___________________|_____________|_____________|_________________|_______________________|_________________|_________________|
| RED | 0 | - | 0 | 1 | - | EventOnActionChanged | 5,000 | TRANS_TIMER |
| GREEN | 1 | - | 1 | 2 | - | EventOnActionChanged | 10,000 | TRANS_TIMER |
| YELLOW | 2 | - | 2 | 0 | - | EventOnActionChanged | 3,000 | TRANS_TIMER |
|_____________|_______|___________________|_____________|_____________|_________________|_______________________|_________________|_________________|
*/
void EventOnActionChanged(EventArgs e); // Event State
enum LightState : id_t {
RED,
GREEN,
YELLOW
};
Transition transitions[] = {
{nullptr, RED, GREEN, nullptr, EventOnActionChanged, 5000, TRANS_TIMER}, // State-1 - NextF = 0, NextT = 1
{nullptr, GREEN, YELLOW, nullptr, EventOnActionChanged, 10000, TRANS_TIMER}, // State-2 - NextF = 1, NextT = 2
{nullptr, YELLOW, RED, nullptr, EventOnActionChanged, 3000, TRANS_TIMER}, // State-3 - NextF = 2, NextT = 0
};
const uint8_t numberOfTransitions = sizeof(transitions) / sizeof(Transition); // Calculate the number of transitions.
FiniteState finiteStateMachine(transitions, numberOfTransitions); // Define Finite-State Object
void setup() {
for (uint8_t index = 0; index < numberOfLights; index ++) {
pinMode(lightPins[index], OUTPUT); // Set Pin Mode
digitalWrite(lightPins[index], LOW); // Set Light with the LOW state.
}
finiteStateMachine.begin(RED); // FSM begins with Initial Transition Id 0
}
void loop() {
finiteStateMachine.execute(); // Execute the FSM
}
void EventOnActionChanged(EventArgs e) {
switch (e.action) {
case ENTRY:
digitalWrite(lightPins[e.id], HIGH); // Set Light with the HIGH state.
break;
case EXIT:
digitalWrite(lightPins[e.id], LOW); // Set Light with the LOW state.
break;
}
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
led1:A
led1:C
led2:A
led2:C
led3:A
led3:C
r5:1
r5:2
r8:1
r8:2
r9:1
r9:2