Page 1 of 1

Security Panel disable beep/sound

Posted: Friday 04 March 2022 10:58
by mf76130
Hi,

Is there a simple way to disable the audio feedback of the keys and the countdown on the security panel?
That beeping is pretty annoying and loud.

thanks in advance
michael

Re: Security Panel disable beep/sound

Posted: Wednesday 30 March 2022 15:45
by waltervl
Lower the general volume of your device.....
Or in domoticz/www/secpanel/index.html change ion.sound.play lines. But will be overwritten after every update of domoticz!

Code: Select all

function beep(tone) {
			if (tone=="error") {
				ion.sound.play("wrongcode");
			}
			else if (tone=="set") {
				ion.sound.play("key");
			}
			else if (tone=="in") {
				ion.sound.play("arm");
			}
			else if (tone=="out") {
				ion.sound.play("disarm");
			}
			else {
				ion.sound.play("key");
add volume to something like

Code: Select all

ion.sound.play("wrongcode", {volume: 0.7});

Re: Security Panel disable beep/sound

Posted: Sunday 03 April 2022 7:14
by mf76130
Thanks for the info, i delete just all audio files :-)