mirror of
https://github.com/S4mpsa/InfOS.git
synced 2025-08-03 09:56:01 -04:00
17 lines
473 B
Lua
Executable File
17 lines
473 B
Lua
Executable File
-- Import section
|
|
local playTune = require("sound.play-tune")
|
|
--
|
|
|
|
local tune = {
|
|
{pitch = "A4", duration = 0.1, wait = 0.0},
|
|
{pitch = "A3", duration = 0.3, wait = 0.4},
|
|
{pitch = "A4", duration = 0.1, wait = 0.0},
|
|
{pitch = "A3", duration = 0.3, wait = 0.4},
|
|
{pitch = "A4", duration = 0.1, wait = 0.0},
|
|
{pitch = "A3", duration = 0.3, wait = 0.4},
|
|
{pitch = "A4", duration = 0.1, wait = 0.0},
|
|
{pitch = "A3", duration = 0.3, wait = 0.4}
|
|
}
|
|
|
|
return playTune(tune)
|