ardour { ["type"] = "EditorHook", name = "LuaTimerS Test", author = "...", description = "Every time the LuaTimerS signal fires the current time (seconds since 1970) is written to the error log window. Should be once per second.", } function signals () return LuaSignal.Set():add ({ [LuaSignal.LuaTimerS] = true, }) end function factory () return function (signal, ref, ...) print(os.time()) end end