diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-10-23 23:06:50 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | 25bef6ee737652ff62789f4af9db2373f93afb00 (patch) | |
tree | aab5d4fc82e07fad452b27e1dcf2f74382fd400d /conf.d/project/etc/sources.json | |
parent | 01650b71c92a67807e346bfff655c59df58f2bfd (diff) |
Update app-template & use new JSON schema for conf
Change-Id: I6e920ee08ea38f53f5dcc58d58f89cf1ace22f42
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/etc/sources.json')
-rw-r--r-- | conf.d/project/etc/sources.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/conf.d/project/etc/sources.json b/conf.d/project/etc/sources.json index 396a6f9..0d04880 100644 --- a/conf.d/project/etc/sources.json +++ b/conf.d/project/etc/sources.json @@ -1,6 +1,8 @@ { + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", "sources": [ { + "uid": "-serviceCAN", "api": "low-can", "info": "Low level binding to handle CAN bus communications", "getSignals": { @@ -9,7 +11,9 @@ "arg": "first argument" } } - }, { + }, + { + "uid": "GPS-service", "api": "gps", "info": "Low level binding which retrieve Satellite positionning values", "init": { @@ -24,7 +28,9 @@ "arg": "first argument" } } - }, { + }, + { + "uid": "MRAA-service", "api": "mraa", "info": "Low level binding which retrieve different values from several sensors like gyroscope, accelerometer, etc" } |