diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-19 16:23:13 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-19 16:40:28 +0100 |
commit | dda0abe9314a7c296d62092c2a08e18f37db4e0a (patch) | |
tree | d84cf3ee45bf1f73cfdf3b651246b8151b6abca6 /conf.d/project/etc/control-signal-composer.json | |
parent | c8f07ec99af84895ef899457c35b9beb000ad11e (diff) |
Get builtin plugin as a normal plugin
- Back in normal configuration file
- Remove builtin special callback as it is just a plugin after all
- Rename main configuration files to get it works on a target
board.
Change-Id: I69165c47e5e58eb519e727cfdd83ee628d90abba
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/etc/control-signal-composer.json')
-rw-r--r-- | conf.d/project/etc/control-signal-composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/conf.d/project/etc/control-signal-composer.json b/conf.d/project/etc/control-signal-composer.json new file mode 100644 index 0000000..d44a8fe --- /dev/null +++ b/conf.d/project/etc/control-signal-composer.json @@ -0,0 +1,34 @@ +{ + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", + "metadata": { + "uid": "Signal Composer", + "version": "1.0", + "api": "signal-composer", + "info": "Signal composer Configuration", + "require": ["low-can"] + }, + "plugins": [ + { + "uid": "low-can-callbacks", + "info": "Manage interaction with low-can service", + "basename": "low-can" + }, + { + "uid": "gps-callbacks", + "info": "Manage interaction with gps service", + "basename": "gps" + }, + { + "uid": "builtin", + "info": "Builtin routine for onReceived or getSignals routines", + "basename": "builtin", + "lua2c": "setSignalValueWrap" + } + ], + "signals": { + "files": ["sig-doors", "sig-demoboard", "sig-geoloc" ] + }, + "sources": { + "files": "sources" + } +} |