Green light alert

Added toggle to alert the user when a red light turns to green.
This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent 1d3a40aa7e
commit f2cd6e256a
9 changed files with 40 additions and 2 deletions

View File

@@ -966,6 +966,14 @@ EVENTS: Dict[int, Dict[str, Union[Alert, AlertCallbackType]]] = {
Priority.LOW, VisualAlert.steerRequired, AudibleAlert.warningSoft, 2.),
},
EventName.greenLight: {
ET.PERMANENT: Alert(
"Light turned green",
"",
AlertStatus.frogpilot, AlertSize.small,
Priority.MID, VisualAlert.none, AudibleAlert.prompt, 3.),
},
}