/*
AuCP_Coin-Operated-Turnstile-With-Event.ino
Created: 4-May-2023
Author: MicroBeaut
GitHub: https://github.com/MicroBeaut/Finite-State#coin-operated-turnstile-with-predicate-and-event
*/
#include "FiniteState.h"
#include "RepeatButton.h"
#define coinInputPin A0 // Define the Coin input pin.
#define armInputPin A1 // Define the Push input pin.
#define lockedStatusPin 7 // Define the Locked state output pin.
#define unlockedStatusPin 6 // Define the Unlocked state output pin.
/*
____________________________________________________________________________________________________________________________________________________
| State-Transition Table |
|___________________________________________________________________________________________________________________________________________________|
| | | | Next-State | Next-State | | | Delay-Time | |
| State | Id | Predicate | Fase | True | Process | Event | (milliseconds) | Timer-Type |
|_____________|_______|___________________|_____________|_____________|_________________|_______________________|_________________|_________________|
| LOCKED | 0 | CoinPredicate | 0 | 1 | - | EventOnActionChanged | - | - |
| UNLOCKED | 1 | ArmPredicate | 1 | 0 | - | EventOnActionChanged | - | - |
|_____________|_______|___________________|_____________|_____________|_________________|_______________________|_________________|_________________|
*/
bool inputPredicate(id_t id); // Declare Coin Predicate function
void EventOnActionChanged(EventArgs e); // Event On Action Changed
enum TurnstileState : id_t {
LOCKED,
UNLOCKED
};
Transition transitions[] = {
{inputPredicate, LOCKED, UNLOCKED, nullptr, EventOnActionChanged}, // State-0 - NextF = 0, NextT = 1
{inputPredicate, UNLOCKED, LOCKED, nullptr, EventOnActionChanged} // State-1 - NextF = 1, NextT = 0
};
const uint8_t numberOfTransitions = sizeof(transitions) / sizeof(Transition); // Calculate the number of transitions.
FiniteState coinOperatedTurnstile(transitions, numberOfTransitions); // Finite-State Object
uint8_t inputPins[numberOfTransitions] = {coinInputPin, armInputPin}; // Declare the input pin array
uint8_t outputPins[numberOfTransitions] = {lockedStatusPin, unlockedStatusPin}; // Declare the output pin array
RepeatButton turnstileInputs[numberOfTransitions]; // Declare the Turnstile Inputs RepeatButton object
void setup() {
for (uint8_t index = 0; index < numberOfTransitions; index++) {
turnstileInputs[index].buttonMode(inputPins[index], INPUT_PULLUP); // Set the Turnstile repeat button pin mode
pinMode(outputPins[index], OUTPUT); // Set the Output state pin mode
}
coinOperatedTurnstile.begin(LOCKED); // FSM begins with Initial Transition Id 0
}
void loop() {
for (uint8_t index = 0; index < numberOfTransitions; index++) {
turnstileInputs[index].repeatButton(); // Executing the Turnstile repeat button function.
}
coinOperatedTurnstile.execute(); // Execute the FSM.
}
bool inputPredicate(id_t id) {
return turnstileInputs[id].isPressed(); // Predicate putting a coin and pushing the arm.
}
void EventOnActionChanged(EventArgs e) {
switch (e.action) {
case ENTRY:
digitalWrite(outputPins[e.id], HIGH); // Turn on the turnstile position status.
break;
case EXIT:
digitalWrite(outputPins[e.id], LOW); // Turn off the previous turnstile position status.
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
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
led1:A
led1:C
led2:A
led2:C
r8:1
r8:2
r9:1
r9:2