This commit is contained in:
2025-06-15 19:53:32 -04:00
parent 3edd415711
commit fd12b48736
3 changed files with 8 additions and 1 deletions

View File

@@ -29,6 +29,9 @@ end
local function playExternalAlarm(speakers)
playSound(speakers,"external_alarm")
end
local function playInternalAlarm(speakers)
playSound(speakers,"internal_alarm")
end
local function createSoundFile(fileName)
@@ -58,7 +61,8 @@ end
local function startup()
local sounds = {
{ fileName = "short_control_alarm" },
{ fileName = "external_alarm" }
{ fileName = "external_alarm" },
{ fileName = "internal_alarm" }
}
for i, item in ipairs(sounds) do