Hello,
When I use the latest version and multicam in the config the width is not working.
It always uses width 6, also if I change it to 12 or 3.
What am I doing wrong?
Search found 9 matches
- Tuesday 09 June 2020 19:06
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 30868
- Thursday 23 April 2020 7:25
- Forum: Dashticz
- Topic: Calculate with custom.js
- Replies: 9
- Views: 662
Re: Calculate with custom.js
Thanx. I'm almost there. I've another question. (sry)
Is there a possibility to change title with text and values?
example: block.title = 'Temp is' valueX 'degrees';
Is there a possibility to change title with text and values?
example: block.title = 'Temp is' valueX 'degrees';
- Wednesday 22 April 2020 8:11
- Forum: Dashticz
- Topic: Calculate with custom.js
- Replies: 9
- Views: 662
Re: Calculate with custom.js
I have another question about custom.js. Is it possible to change the value of a block? My temperature device is 0.5 degrees off because it's hanging in the wrong place. Can I correct the value somewhere in the custom.js ? I tried "Dashticz.setBlock(178, { value, correct} );" but this does not ...
- Tuesday 21 April 2020 20:23
- Forum: Dashticz
- Topic: Calculate with custom.js
- Replies: 9
- Views: 662
Re: Calculate with custom.js
Thanx. It's working now function afterGetDevices(){ var devices = Domoticz.getAllDevices(); var power=devices[108]; var value1=parseFloat(power.CounterDelivToday); var value2=parseFloat(power.CounterToday); var diff = value2 - value1; if (diff > 0) { $('.block_108_2').addClass('warningred'); } else ...
- Tuesday 21 April 2020 10:27
- Forum: Dashticz
- Topic: Calculate with custom.js
- Replies: 9
- Views: 662
Re: Calculate with custom.js
Lokonli,
Thanks for the quick response. I'm already using this option.
I want to go a step further and use 2 block values to compare, the result then used to change a block.
Thanks for the quick response. I'm already using this option.
I want to go a step further and use 2 block values to compare, the result then used to change a block.
- Tuesday 21 April 2020 9:27
- Forum: Dashticz
- Topic: Calculate with custom.js
- Replies: 9
- Views: 662
Calculate with custom.js
Hello all, I want to know if it's possible to calculate with different block values and after that change the color of a block. For example, if the value returned to grid(solar) is higher then used from grid, I want to change the color of the block "returned to grid" green. If I'm using more from ...
- Friday 10 April 2020 14:05
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 30868
Re: Dashticz IP Cameras
Thanx for changing. I want to use higher resolution for the videoUrl is that possible? snap.jpg?usr=live?JpegSize=S -> is for imageUrl snap.jpg?usr=live?JpegSize=XL -> for videoUrl Unfortunately that's not possible. The videoUrl can only be used for video. If you want your fullscreen image to show ...
- Friday 10 April 2020 11:11
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 30868
Re: Dashticz IP Cameras
I have updated the Camera block. Now, if you do not set the MJPEG "videoUrl", because you don't have one or cannot find one, it will use your "imageUrl" for the fullscreen image. It will use the "refresh" value to update the image every n milliseconds (like the block preview image). blocks['camera ...
- Thursday 09 April 2020 11:20
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 30868
Re: Dashticz IP Cameras
Is it maybe possible to add refresh to the videoUrl because my camera only has the option for imageUrl?