Added squelch
This commit is contained in:
parent
34bd5cceab
commit
c0e364cd44
@ -92,14 +92,14 @@
|
|||||||
<div class="openwebrx-button openwebrx-demodulator-button" onclick="demodulator_analog_replace('cw');">CW</div>
|
<div class="openwebrx-button openwebrx-demodulator-button" onclick="demodulator_analog_replace('cw');">CW</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="openwebrx-panel-line">
|
<div class="openwebrx-panel-line">
|
||||||
<div title="Mute on/off" id="openwebrx-mute-off" class="openwebrx-button" onclick="toggleMute();"><img src="gfx/openwebrx-speaker.png" class="openwebrx-sliderbtn-img"></div>
|
<div title="Mute on/off" id="openwebrx-mute-off" class="openwebrx-button" onclick="toggleMute();"><img src="gfx/openwebrx-speaker.png" class="openwebrx-sliderbtn-img" id="openwebrx-mute-img"></div>
|
||||||
<input title="Volume" id="openwebrx-panel-volume" class="openwebrx-panel-slider" type="range" min="0" max="150" value="50" step="1" onchange="updateVolume()" oninput="updateVolume()">
|
<input title="Volume" id="openwebrx-panel-volume" class="openwebrx-panel-slider" type="range" min="0" max="150" value="50" step="1" onchange="updateVolume()" oninput="updateVolume()">
|
||||||
<div title="Auto-adjust waterfall colors" id="openwebrx-waterfall-colors-auto" class="openwebrx-button" onclick="waterfall_measure_minmax_now=true;"><img src="gfx/openwebrx-waterfall-auto.png" class="openwebrx-sliderbtn-img"></div>
|
<div title="Auto-adjust waterfall colors" id="openwebrx-waterfall-colors-auto" class="openwebrx-button" onclick="waterfall_measure_minmax_now=true;"><img src="gfx/openwebrx-waterfall-auto.png" class="openwebrx-sliderbtn-img"></div>
|
||||||
<input title="Waterfall minimum level" id="openwebrx-waterfall-color-min" class="openwebrx-panel-slider" type="range" min="-200" max="100" value="50" step="1" onchange="updateWaterfallColors(0);" oninput="updateVolume()">
|
<input title="Waterfall minimum level" id="openwebrx-waterfall-color-min" class="openwebrx-panel-slider" type="range" min="-200" max="100" value="50" step="1" onchange="updateWaterfallColors(0);" oninput="updateVolume()">
|
||||||
</div>
|
</div>
|
||||||
<div class="openwebrx-panel-line">
|
<div class="openwebrx-panel-line">
|
||||||
<div title="Disable squelch" id="openwebrx-squelch-default" class="openwebrx-button" onclick="setSquelchDefault()"><img src="gfx/openwebrx-squelch-button.png" class="openwebrx-sliderbtn-img"></div>
|
<div title="Auto-set squelch level" id="openwebrx-squelch-default" class="openwebrx-button" onclick="setSquelchToAuto()"><img src="gfx/openwebrx-squelch-button.png" class="openwebrx-sliderbtn-img"></div>
|
||||||
<input title="Squelch" id="openwebrx-panel-squelch" class="openwebrx-panel-slider" type="range" min="0" max="100" value="0" step="1" onchange="updateVolume()" oninput="updateVolume()">
|
<input title="Squelch" id="openwebrx-panel-squelch" class="openwebrx-panel-slider" type="range" min="-150" max="0" value="-150" step="1" onchange="updateSquelch()" oninput="updateSquelch()">
|
||||||
<div title="Set waterfall colors to default" id="openwebrx-waterfall-colors-default" class="openwebrx-button" onclick="waterfallColorsDefault()"><img src="gfx/openwebrx-waterfall-default.png" class="openwebrx-sliderbtn-img"></div>
|
<div title="Set waterfall colors to default" id="openwebrx-waterfall-colors-default" class="openwebrx-button" onclick="waterfallColorsDefault()"><img src="gfx/openwebrx-waterfall-default.png" class="openwebrx-sliderbtn-img"></div>
|
||||||
<input title="Waterfall maximum level" id="openwebrx-waterfall-color-max" class="openwebrx-panel-slider" type="range" min="-200" max="100" value="50" step="1" onchange="updateWaterfallColors(1);" oninput="updateVolume()">
|
<input title="Waterfall maximum level" id="openwebrx-waterfall-color-max" class="openwebrx-panel-slider" type="range" min="-200" max="100" value="50" step="1" onchange="updateWaterfallColors(1);" oninput="updateVolume()">
|
||||||
</div>
|
</div>
|
||||||
|
@ -150,6 +150,13 @@ function zoomOutOneStep () { zoom_set(zoom_level-1); }
|
|||||||
function zoomInTotal () { zoom_set(zoom_levels.length-1); }
|
function zoomInTotal () { zoom_set(zoom_levels.length-1); }
|
||||||
function zoomOutTotal () { zoom_set(0); }
|
function zoomOutTotal () { zoom_set(0); }
|
||||||
function setSquelchDefault() { e("openwebrx-panel-squelch").value=0; }
|
function setSquelchDefault() { e("openwebrx-panel-squelch").value=0; }
|
||||||
|
function setSquelchToAuto() { e("openwebrx-panel-squelch").value=(getLogSmeterValue(smeter_level)+10).toString(); updateSquelch(); }
|
||||||
|
function updateSquelch()
|
||||||
|
{
|
||||||
|
var sliderValue=parseInt(e("openwebrx-panel-squelch").value);
|
||||||
|
var outputValue=(sliderValue==parseInt(e("openwebrx-panel-squelch").min))?0:getLinearSmeterValue(sliderValue);
|
||||||
|
ws.send("SET squelch_level="+outputValue.toString());
|
||||||
|
}
|
||||||
|
|
||||||
function updateWaterfallColors(which)
|
function updateWaterfallColors(which)
|
||||||
{
|
{
|
||||||
@ -197,6 +204,11 @@ function getLogSmeterValue(value)
|
|||||||
return 10*Math.log10(value);
|
return 10*Math.log10(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getLinearSmeterValue(db_value)
|
||||||
|
{
|
||||||
|
return Math.pow(10,db_value/10);
|
||||||
|
}
|
||||||
|
|
||||||
function setSmeterAbsoluteValue(value) //the value that comes from `csdr squelch_and_smeter_cc`
|
function setSmeterAbsoluteValue(value) //the value that comes from `csdr squelch_and_smeter_cc`
|
||||||
{
|
{
|
||||||
var logValue=getLogSmeterValue(value);
|
var logValue=getLogSmeterValue(value);
|
||||||
@ -1010,6 +1022,8 @@ zoom_offset_px=0;
|
|||||||
zoom_center_rel=0;
|
zoom_center_rel=0;
|
||||||
zoom_center_where=0;
|
zoom_center_where=0;
|
||||||
|
|
||||||
|
smeter_level=0;
|
||||||
|
|
||||||
function mkzoomlevels()
|
function mkzoomlevels()
|
||||||
{
|
{
|
||||||
zoom_levels=[1];
|
zoom_levels=[1];
|
||||||
|
Loading…
Reference in New Issue
Block a user