summaryrefslogtreecommitdiffstats
path: root/conf.d/project/etc/sources.json
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-09-14 19:31:42 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-12-14 11:00:25 +0100
commiteabae24ea592420de46e36f0b1af5d39eee5b8a4 (patch)
tree16cbc39e84eb71d655add40e715f7d87b4b02132 /conf.d/project/etc/sources.json
parent140fd3d8f76a8cbbde8f6b0bf997808855f3da43 (diff)
Attach and recursion check working
Change-Id: I2f9509d4b6aa63a16df8db2187810337fd802ef4 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.json50
1 files changed, 50 insertions, 0 deletions
diff --git a/conf.d/project/etc/sources.json b/conf.d/project/etc/sources.json
new file mode 100644
index 0000000..a70da50
--- /dev/null
+++ b/conf.d/project/etc/sources.json
@@ -0,0 +1,50 @@
+{
+ "sources": [
+ {
+ "api": "low-can",
+ "info": "Low level binding to handle CAN bus communications",
+ "init": {
+ "function": "low-can/subscribe",
+ "args": {
+ "event": "message*"
+ }
+ },
+ "getSignal": {
+ "function": "_LUA_Simple_Echo_Args",
+ "args": {
+ "arg": "first argument"
+ }
+ }
+ }, {
+ "api": "gps",
+ "info": "Low level binding which retrieve Satellite positionning values",
+ "init": {
+ "function": "_LUA_Simple_Echo_Args",
+ "args": {
+ "arg1": "first argument"
+ }
+ },
+ "getSignal": {
+ "function": "_LUA_Simple_Echo_Args",
+ "args": {
+ "arg": "first argument"
+ }
+ }
+ }, {
+ "api": "mraa",
+ "info": "Low level binding which retrieve different values from several sensors like gyroscope, accelerometer, etc",
+ "init": {
+ "function": "_LUA_Simple_Echo_Args",
+ "args": {
+ "arg1": "first argument"
+ }
+ },
+ "getSignal": {
+ "function": "_LUA_Simple_Echo_Args",
+ "args": {
+ "arg": "first argument"
+ }
+ }
+ }
+ ]
+}