diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-10-05 01:38:18 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | 8df3e437f941912067231250ff5695b8a3a7fd92 (patch) | |
tree | c812fb252ad0f8a48041aff28b7fc60a75f245d1 /conf.d/project/lua.d/init-daemon-04-oncall.lua | |
parent | 8364673ab93eb484e25c7c4776e5d705b73330b4 (diff) |
LUA lib and bin embedded in project
Change-Id: I1a61b49f55e4daa305800e754a14b6041aa81b34
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/lua.d/init-daemon-04-oncall.lua')
-rw-r--r-- | conf.d/project/lua.d/init-daemon-04-oncall.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/conf.d/project/lua.d/init-daemon-04-oncall.lua b/conf.d/project/lua.d/init-daemon-04-oncall.lua index 7dc4669..71df908 100644 --- a/conf.d/project/lua.d/init-daemon-04-oncall.lua +++ b/conf.d/project/lua.d/init-daemon-04-oncall.lua @@ -42,6 +42,8 @@ function _Unit_Converter(source, args, event) local sourcei, targeti = _positions[sourceunits], _positions[targetunits] assert(sourcei and targeti) + print(event['timestamp']) + if sourcei<targeti then local base=1 @@ -51,7 +53,7 @@ function _Unit_Converter(source, args, event) event["value"] = value/base - lua2c["setSignalValueWrap"](source, event) + lua2c["luaSet"](source, event) elseif sourcei>targeti then @@ -62,7 +64,7 @@ function _Unit_Converter(source, args, event) event["value"] = value/base - lua2c["setSignalValueWrap"](source, event) + lua2c["luaSet"](source, event) else print("No conversion") |