#include "TrafficLight.h"
// Create an instance of the TrafficLight class
TrafficLight trafficLight;
void setup() {
// Initialize the traffic light
pinMode(13, OUTPUT); // Red LED
pinMode(12, OUTPUT); // Green LED
pinMode(11, OUTPUT); // Yellow LED
}
void loop() {
// Run the traffic light state machine
trafficLight.run();
}