This commit is contained in:
Jason Wen
2024-11-25 00:09:14 -05:00
parent 7fbdc63f11
commit 2fbe4e8f71
2 changed files with 12 additions and 4 deletions
+10 -2
View File
@@ -1037,12 +1037,20 @@ EVENTS: dict[int, dict[str, Alert | AlertCallbackType]] = {
},
EventName.silentDoorOpen: {
ET.SOFT_DISABLE: user_soft_disable_alert("Door Open"),
ET.WARNING: Alert(
"",
"",
AlertStatus.normal, AlertSize.mid,
Priority.LOW, VisualAlert.none, AudibleAlert.none, 0.),
ET.NO_ENTRY: NoEntryAlert("Door Open"),
},
EventName.silentSeatbeltNotLatched: {
ET.SOFT_DISABLE: user_soft_disable_alert("Seatbelt Unlatched"),
ET.WARNING: Alert(
"",
"",
AlertStatus.normal, AlertSize.mid,
Priority.LOW, VisualAlert.none, AudibleAlert.none, 0.),
ET.NO_ENTRY: NoEntryAlert("Seatbelt Unlatched"),
},