diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2017-08-18 01:09:56 +0200 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2017-08-18 01:09:56 +0200 |
commit | a7d41a6fa1e29d800ce8ac9e95e8f943814463e8 (patch) | |
tree | 30ca09383f1ce30df559601328e1714f67afc8fc /conf.d/project/lua.d/onload-audio-timer.lua | |
parent | 5e919fde0a4c66b0203c46b8f06f303fcceaedde (diff) |
Integration with Alsa HookPlugin is now working.
Diffstat (limited to 'conf.d/project/lua.d/onload-audio-timer.lua')
-rw-r--r-- | conf.d/project/lua.d/onload-audio-timer.lua | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/conf.d/project/lua.d/onload-audio-timer.lua b/conf.d/project/lua.d/onload-audio-timer.lua index 5f25de7..db7a937 100644 --- a/conf.d/project/lua.d/onload-audio-timer.lua +++ b/conf.d/project/lua.d/onload-audio-timer.lua @@ -19,11 +19,10 @@ --]] -- Create event on Lua script load -print ("*** Create MyTestEvent ***") -MyEventHandle= AFB:evtmake("MyTestEvent") +local MyEventHandle=AFB:evtmake("MyTestEvent") -- Call count time every delay/ms -function Timer_Test_CB (timer, context) +local function Timer_Test_CB (timer, context) local evtinfo= AFB:timerget(timer) print ("timer=", Dump_Table(evtinfo)) @@ -37,7 +36,7 @@ function Timer_Test_CB (timer, context) end -- sendback event depending on count and delay -function Simple_Timer_Test (request, args) +function _Simple_Timer_Test (request, args) local context = { ["info"]="My 1st private Event", @@ -68,6 +67,3 @@ function Simple_Timer_Test (request, args) return 0 end - - - |