aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/lua.d/onload-aaaa-02-timer.lua
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-08-22 19:09:18 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-08-22 19:09:42 +0200
commit606ccd2405a55eab4c909160c951c083bccd825d (patch)
tree790d438e234fc31283f86c2ce8bf9e1cdc94e8f7 /conf.d/project/lua.d/onload-aaaa-02-timer.lua
parent1d7c537cb1106f8daf36a6bbd69ecd377b542b39 (diff)
Remove Controller that is now stand alone.
Also move filescan and wrap-json library into a separate submodule afb-utilities Change-Id: Ic46cceb88cd25a808cbd0e5e6da53f56f9fc786c Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/lua.d/onload-aaaa-02-timer.lua')
-rw-r--r--conf.d/project/lua.d/onload-aaaa-02-timer.lua69
1 files changed, 0 insertions, 69 deletions
diff --git a/conf.d/project/lua.d/onload-aaaa-02-timer.lua b/conf.d/project/lua.d/onload-aaaa-02-timer.lua
deleted file mode 100644
index db7a937..0000000
--- a/conf.d/project/lua.d/onload-aaaa-02-timer.lua
+++ /dev/null
@@ -1,69 +0,0 @@
---[[
- Copyright (C) 2016 "IoT.bzh"
- Author Fulup Ar Foll <fulup@iot.bzh>
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
-
- Provide Sample Timer Handing to push event from LUA
---]]
-
--- Create event on Lua script load
-local MyEventHandle=AFB:evtmake("MyTestEvent")
-
--- Call count time every delay/ms
-local function Timer_Test_CB (timer, context)
-
- local evtinfo= AFB:timerget(timer)
- print ("timer=", Dump_Table(evtinfo))
-
- --send an event an event with count as value
- AFB:evtpush (MyEventHandle, {["label"]= evtinfo["label"], ["count"]=evtinfo["count"], ["info"]=context["info"]})
-
- -- note when timerCB return!=0 timer is kill
- return 0
-
-end
-
--- sendback event depending on count and delay
-function _Simple_Timer_Test (request, args)
-
- local context = {
- ["info"]="My 1st private Event",
- }
-
- -- if delay not defined default is 5s
- if (args["delay"]==nil) then args["delay"]=5000 end
-
- -- if count is not defined default is 10
- if (args["count"]==nil) then args["count"]=10 end
-
- -- we could use directly args but it is a sample
- local myTimer = {
- ["label"]=args["label"],
- ["delay"]=args["delay"],
- ["count"]=args["count"],
- }
- AFB:notice ("Test_Timer myTimer=%s", myTimer)
-
- -- subscribe to event
- AFB:subscribe (request, MyEventHandle)
-
- -- settimer take a table with delay+count as input (count==0 means infinite)
- AFB:timerset (myTimer, "Timer_Test_CB", context)
-
- -- nothing special to return send back args
- AFB:success (request, myTimer)
-
- return 0
-end