dude are colors even real

This commit is contained in:
2025-09-22 15:45:12 -05:00
parent a64dd0b1e5
commit 9e2e9f7773
211 changed files with 181603 additions and 314 deletions

View File

@@ -0,0 +1,20 @@
/*
* breadboard.cpp
*
* Created on: Sep 22, 2025
* Author: ja
*/
#include "breadboard.h"
void SetTrafficLights(TrafficState s)
{
HAL_GPIO_WritePin(LED_Port, Green_Pin, GPIO_PIN_RESET);
HAL_GPIO_WritePin(LED_Port, Yellow_Pin, GPIO_PIN_RESET);
HAL_GPIO_WritePin(LED_Port, Red_Pin, GPIO_PIN_RESET);
switch (s)
{
case TrafficState:::GREEN
}
}