Page 2 of 3
Re: Dashticz - Function - Action on status change
Posted: Monday 26 June 2017 14:52
by gielie
repoman wrote:Hi. The popup for the camera's work very well.
Can you center the camera image on the popup?
(or make the popup adjust to the size of the image?)
Thanks,
Pascal
Id like to know if this is possible, now the popup window is too large.
Re: Dashticz - Function - Action on status change
Posted: Monday 26 June 2017 16:07
by EdwinK
i would like to see the popup from the camera. All I got is a greyish-white.
Re: Dashticz - Function - Action on status change
Posted: Tuesday 04 July 2017 14:26
by gielie
EdKo66 wrote:i would like to see the popup from the camera. All I got is a greyish-white.
Does the camera popup work when you click on the camera?
Re: Dashticz - Function - Action on status change
Posted: Tuesday 04 July 2017 17:33
by EdwinK
In the Cam-setting on Domoticz when I click the 'streaming' button, there is a popup with camera-view.
Re: Dashticz - Function - Action on status change
Posted: Thursday 06 July 2017 9:41
by gielie
EdKo66 wrote:In the Cam-setting on Domoticz when I click the 'streaming' button, there is a popup with camera-view.
Can you show me your camera code ur using in dashticz? And also the popup code? Ill take a look if i can make something of it
Re: Dashticz - Function - Action on status change
Posted: Friday 04 August 2017 11:23
by DewGew
Is it possible to play one sound for "on" and a different sound for "off"?
Re: Dashticz - Function - Action on status change
Posted: Friday 04 August 2017 12:26
by robgeerts
Not yet, could you add that request to github?
Re: Dashticz - Function - Action on status change
Posted: Monday 20 November 2017 13:07
by DewGew
Function updated in latest beta:
Go to slide
Example: Go to a second or third screen wich if filled with camera when a motionsensor is detected in your yard.
Code: Select all
blocks[110] = {}
blocks[110]['gotoslideOn'] = 2;
Example: Go to a second or third screen wich is filled with status devices when ping device has lost connection to google.
Code: Select all
blocks[110] = {}
blocks[110]['gotoslideOff'] = 2;
Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 0:26
by pvm
Nice!
That should enable me to go to full screen ip cam upon movement
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 9:26
by Regdul
hey guys,
nice work ! got it working. the only thing is the playing sound is really delayed. it takes about 10 to 20 seconds before playing sound. is it due to my tablet/network? on the phones using domoticz app for android it comes instantly.
is it possible to save the doorbell sound local on the tablet ?
Code: Select all
blocks[1043] = {}
blocks[1043]['width'] = 4;
blocks[1043]['title'] = 'Deurbel'; /
blocks[1043]['icon'] = 'fa-bell-o';
blocks[1043]['switch'] = true;
blocks[1043]['hide_data'] = true;
blocks[1043]['show_lastupdate'] = true;
blocks[1043]['playsound'] = 'sounds/doorbell.ogg';
the tablet is android 4.4 and using 2.4Ghz wifi.
thanks in advance
greetings Regdul
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 10:21
by aiolos
Isn't that because dashticz only refreshes every X seconds (depending on you setting in CONFIG.js)? Lowering that should play the sound earlier, but will also make the load on domoticz higher.
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 11:08
by Regdul
aiolos wrote: ↑Tuesday 21 November 2017 10:21
Isn't that because dashticz only refreshes every X seconds (depending on you setting in CONFIG.js)? Lowering that should play the sound earlier, but will also make the load on domoticz higher.
just gave it a try. changed it from 60 seconds to 30 seconds. no effect

still it takes about 10-20 seconds before playing the sound
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 11:26
by aiolos
Regdul wrote: ↑Tuesday 21 November 2017 11:08
aiolos wrote: ↑Tuesday 21 November 2017 10:21
Isn't that because dashticz only refreshes every X seconds (depending on you setting in CONFIG.js)? Lowering that should play the sound earlier, but will also make the load on domoticz higher.
just gave it a try. changed it from 60 seconds to 30 seconds. no effect

still it takes about 10-20 seconds before playing the sound
I would say try setting the domoticz refresh to 5 seconds in config, like this:
Then every 5 seconds the devices are fetched from domoticz, and it should only take max 5 seconds before the sound is played. Dashticz does not get a 'push' from domoticz, and the connection is not open all the time, so the status change is only known after a new fetch of data.
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 11:55
by robgeerts
Well, I think you misunderstand each other.
My guess is he does see the status change (visually, because of the domoticz refresh) but it just takes time to load the mp3...
I had the same issue on my (old) tablet. Do you load Dashticz through an internal IP or external?
Re: Dashticz - Function - Action on status change
Posted: Tuesday 21 November 2017 12:40
by Regdul
I load dashticz through internal ip.
Is it possible to save the file on the tablet and load it from there?
It seems to me that it has to "buffer".
The only thing is, when manually push the doorbell button,in the interface of dashticz on the. It plays the sound right away.
When i push the doorbell at the frontdoor it takes time before it plays the sound
Re: Dashticz - Function - Action on status change
Posted: Wednesday 29 November 2017 22:01
by pvm
DewGew wrote: ↑Monday 20 November 2017 13:07
Function updated in latest beta:
Go to slide
Example: Go to a second or third screen wich if filled with camera when a motionsensor is detected in your yard.
Code: Select all
blocks[110] = {}
blocks[110]['gotoslideOn'] = 2;
Got this function working nicely. It would be more useful to me when this would also exit the standby screen? Is that possible?
Re: Dashticz - Function - Action on status change
Posted: Friday 01 December 2017 9:42
by DewGew
pvm wrote: ↑Wednesday 29 November 2017 22:01
DewGew wrote: ↑Monday 20 November 2017 13:07
Function updated in latest beta:
Go to slide
Example: Go to a second or third screen wich if filled with camera when a motionsensor is detected in your yard.
Code: Select all
blocks[110] = {}
blocks[110]['gotoslideOn'] = 2;
Got this function working nicely. It would be more useful to me when this would also exit the standby screen? Is that possible?
Thanks for the tip. Now you have this function in the latest beta.
Re: Dashticz - Function - Action on status change
Posted: Friday 01 December 2017 21:45
by pvm
Integrated this evening and working nicely: Dashticz leaves standby mode after slide switch (motion detection on IP Camera in my case)
Re: Dashticz - Function - Action on status change
Posted: Monday 08 January 2018 20:11
by sailmich
Any chance to use own mp3 sound files for change of status? Would be cool to get information by voice e.g. all blinds are closed, humidity is to high open the window.......
I have a friend with a very warm voice I would like to record sentences and use them for notifications.

Re: Dashticz - Function - Action on status change
Posted: Monday 08 January 2018 20:59
by robgeerts
You can add them to the custom directory, and use something like:
Code: Select all
blocks[110] = {}
blocks[110]['playsound'] = 'custom/warmvoice.mp3';