aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-06-15 21:01:05 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-10-08 15:53:53 +0200
commit69cad3cf65c741ba34330f0f0bcad2c98dec6eef (patch)
tree6c359febb93b688438c4b4a66f9b8d3c36738523
parentb217e34e91fedfbba45fcfe8f1643a97a8f7ecaf (diff)
Correct typo in README.md
Correct some typo in README. Change-Id: If6a2cd3a710a775dc86f33c1a9241e21814264b0 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 483bc0e..67eb682 100644
--- a/README.md
+++ b/README.md
@@ -189,7 +189,7 @@ And now with more information:
Now, you can obtain streams information of your initialized internal hal:
-```4a-hal-*halapiname* info```
+```*halapiname* info```
All the streams listed are available as a verb of the hal api using `name` field.
You can also get the corresponding card id of the stream in `cardId` field.
@@ -208,13 +208,13 @@ Use the previously obtain card id to play audio in the selected stream:
Now you can use your hal api to send commands to mixer. This way, you can change/ramp volume:
-`4a-hal-*halapiname* *selected_stream* { "volume" : "+10" }`
+`*halapiname* *selected_stream* { "volume" : "+10" }`
-`4a-hal-*halapiname* *selected_stream* { "volume" : 70 }`
+`*halapiname* *selected_stream* { "volume" : 70 }`
-`4a-hal-*halapiname* *selected_stream* { "ramp" : "-10" }`
+`*halapiname* *selected_stream* { "ramp" : "-10" }`
-`4a-hal-*halapiname* *selected_stream* { "ramp" : 100 }`
+`*halapiname* *selected_stream* { "ramp" : 100 }`
#### Warning