diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-25 18:29:48 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | b7dd0a6e19d5387bc8d499bd1b3a99d457fa58d9 (patch) | |
tree | 0d1a26964435e8f91b96713e2b5beb3c1e94d0b2 /conf.d/project/lua.d/init-daemon-04-oncall.lua | |
parent | db45a68715c07e6b8fe35e322ddcbbc6c473cb2b (diff) |
Enhance pointer manage and container browsing
- SourceAPI now holds share_ptr of Signal
- Signal are stored in a map<string,signal> that change
way to browse the signals
- subscribed property included in SourceAPI.
- Clean old code
- renaming struct SignalValue->signalValue
Change-Id: Ic5c28296ddd7197c6562e12fbc91c504c1cc0b4d
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 | 4 |
1 files changed, 2 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 d473121..8912f26 100644 --- a/conf.d/project/lua.d/init-daemon-04-oncall.lua +++ b/conf.d/project/lua.d/init-daemon-04-oncall.lua @@ -54,7 +54,7 @@ function _Unit_Converter(source, args, event) print("Value in", targetunits, "is", value/base) _result["result"] = value/base - ssetSignalValue(source, _result) + _setsignalValue(source, _result) elseif sourcei>targeti then @@ -66,7 +66,7 @@ function _Unit_Converter(source, args, event) print("Value in ", targetunits, "is", value*base) _result["result"] = value/base - ssetSignalValue(source, _result) + _setsignalValue(source, _result) else print("No conversion") |