summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClément Bénier <clement.benier@iot.bzh>2018-06-22 15:49:47 +0200
committerStephane Desneux <stephane.desneux@iot.bzh>2018-06-29 01:54:46 +0200
commitffab6de9c0e87fa8019d6a090d847b9017d2e015 (patch)
treea940ceb64ab21c87387865b5f414bd62abf161de /README.md
parentc0e31a9a5263e5c7e9114530ee8d1bd4e4602685 (diff)
Remove useless code and declare iio_infos in C code
- Remove treat_iio_infos function that is no used at all in source code. - it's really not a good idea to define static variable in header file (causing redefinition each time header file is included), so move static definition of iio_infos in C code. Change-Id: I66c6c5593c9d10581b49ce5f2a9b2f4952584259 Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh> Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index e712116..85f97e5 100644
--- a/README.md
+++ b/README.md
@@ -16,16 +16,16 @@ subscription.
| Name | Description | JSON Parameters |
|:-------------------|:--------------------------------------------|:--------------------------------------------------------------- |
-| subscribe | subscribe to 9 axis events | *Request:* {"event": "accel", "args":"xy", "frequency": "10" }|
-| unsubscribe | unsubscribe to accelero events | *Request:* {"event": "accel" } |
+| subscribe | subscribe to 9 axis events | *Request:* {"event": "acceleration", "args":"xy", "frequency": "10" }|
+| unsubscribe | unsubscribe to accelero events | *Request:* {"event": "acceleration" } |
## Events
For now, there are 3 different events matching with the different available sensors.
-* "accel": is for acceleration data
-* "magn": is for gyroscope data
-* "anglvel": is for electronic compass data
+* "acceleration": is for acceleration data
+* "gyroscope": is for gyroscope data
+* "compass": is for electronic compass data
## Frequency