aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/htdocs/index.html
blob: c667ddebd6032ee66d5595adaf55903c38853efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
    <head>
        <title>Simple COntroller Test</title>
        <link rel="stylesheet" href="AudioBinding.css">
        <script type="text/javascript" src="AFB-websock.js"></script>
        <script type="text/javascript" src="AudioBinding.js"></script>
        <script type="text/javascript">
        </script>

    </head>

    <body onload="init()">

        <h1>Simple Mixer Test</h1>
        <button id="connected" onclick="init()">Binder WS Fail</button> 
        <button id="mnitoring" onclick="window.open('/monitoring/monitor.html', '_monitor_ctl')">Debug/Monitoring</a></button>
    <br><br>

    <h2>V3 API CALL</h2>
    <ol>
        <li><button onclick="callbinder('smixer', 'info', {streams: true});">Streams List</button></li>
        <li><button onclick="callbinder('smixer', 'info', {ramps: true});">Ramps List</button></li>
        <li><button onclick="callbinder('smixer', 'info', {zones: true});">Zones List</button></li>
        <br>
        <li><button onclick="callbinder('smixer', '8CH-USB/playback', {volume: '+10'});">Master 8CH-USB vol=+10</button></li>
        <li><button onclick="callbinder('smixer', '8CH-USB/playback', {volume: '-10'});">Master 8CH-USB vol=-10</button></li>
        <br>
        <li><button onclick="callbinder('smixer', 'multimedia', {toggle: true});">Stream Multimedia pause/resume</button></li>
        <li><button onclick="callbinder('smixer', 'navigation', {toggle: true});">Stream Navigation pause/resume</button></li>
        <br>
        <li><button onclick="callbinder('smixer', 'multimedia', {volume: '+10'});">Stream Multimedia volume=+10"</button></li>
        <li><button onclick="callbinder('smixer', 'multimedia', {volume: '-10'});">Stream Multimedia volume=-10"</button></li>
        <br>
        <li><button onclick="callbinder('smixer', 'multimedia', {ramp: {uid:'ramp-slow', volume:30}});">Stream Multimedia ramp-slow=30"</button></li>
        <li><button onclick="callbinder('smixer', 'multimedia', {ramp: {uid:'ramp-fast', volume:80}});">Stream Multimedia ramp-fast=80"</button></li>
    </ol>

    <div id="main" style="visibility:hidden">
        <ol>
            <li>Question <pre id="question"></pre>
            <li>Response <pre id="output"></pre>
            <li>Events: <pre id="outevt"></pre>
        </ol>
    </div>