diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-27 17:18:55 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-27 17:19:56 +0200 |
commit | 1fe55667142158af865372a8b9916581662286fe (patch) | |
tree | 797b285d187938f2bf1ff60eec555a14b126c259 /htdocs/AudioBinding.js | |
parent | bbe0fa2bb0479bf7a09eed345fefc3c375773745 (diff) |
Change marketing stuff
unicens -> UNICENS
MicroChip -> Microchip
Change-Id: I7a2f48ac62f44579831ed252b5e24dc918c09645
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'htdocs/AudioBinding.js')
-rw-r--r-- | htdocs/AudioBinding.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/htdocs/AudioBinding.js b/htdocs/AudioBinding.js index e830861..5f9ea24 100644 --- a/htdocs/AudioBinding.js +++ b/htdocs/AudioBinding.js @@ -13,17 +13,17 @@ if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, " ")); } - + // default soundcard is "PCH" var devid=getParameterByName("devid"); if (!devid) devid="hw:0"; - + var sndname=getParameterByName("sndname"); if (!sndname) sndname="PCH"; - + var quiet=getParameterByName("quiet"); if (!quiet) quiet="99"; - + function init() { ws = new afb.ws(onopen, onabort); } @@ -34,39 +34,39 @@ document.getElementById("connected").style.background = "lightgreen"; ws.onevent("*", gotevent); } - + function onabort() { document.getElementById("main").style.visibility = "hidden"; document.getElementById("connected").innerHTML = "Connected Closed"; document.getElementById("connected").style.background = "red"; } - + function replyok(obj) { console.log("replyok:" + JSON.stringify(obj)); document.getElementById("output").innerHTML = "OK: "+JSON.stringify(obj); } - + function replyerr(obj) { console.log("replyerr:" + JSON.stringify(obj)); document.getElementById("output").innerHTML = "ERROR: "+JSON.stringify(obj); } - + function gotevent(obj) { console.log("gotevent:" + JSON.stringify(obj)); document.getElementById("outevt").innerHTML = (evtidx++) +": "+JSON.stringify(obj); } - + function send(message) { var api = document.getElementById("api").value; var verb = document.getElementById("verb").value; document.getElementById("question").innerHTML = "subscribe: "+api+"/"+verb + " (" + JSON.stringify(message) +")"; ws.call(api+"/"+verb, {data:message}).then(replyok, replyerr); } - - + + function callbinder(api, verb, query) { console.log ("subscribe api="+api+" verb="+verb+" query=" +query); document.getElementById("question").innerHTML = "apicall: " + api+"/"+verb +" ("+ JSON.stringify(query)+")"; ws.call(api+"/"+verb, query).then(replyok, replyerr); - }
\ No newline at end of file + } |