Page 9 of 20
Re: Dashticz - Feature Requests
Posted: Friday 23 June 2017 10:04
by htilburgs
WaTTe wrote:Change the text of a temperature sensor depending on the measured temperature.
Eg a green color at 5 degrees an orange color at 15 a red at 25 etc.
I think this can be done in the config.js, see wiki for examples (
http://www.domoticz.com/wiki/Dashticz_V2_-_Custom_JS)
Re: Dashticz - Feature Requests
Posted: Friday 23 June 2017 14:20
by htilburgs
robgeerts wrote:htilburgs wrote:Rob, one question. Is it possible to change the class of the calendar image?
Now is has class ICON and is it not quite possible to change format of location of the image.
I've added this class in BETA: calendar_icon
Sorry, I forgot to reply, but it works great!!
Thanx for the hard work.
CSS:
Code: Select all
.icon.calendar_icon {
max-width: 45px !important;
margin-top: -6px !important;
margin-left: -6px !important;
}
Re: Dashticz - Feature Requests
Posted: Saturday 24 June 2017 9:20
by MsbS
Currently the graphs for T+H+B are combined - each data item in the graph has 3 values. I would love 3 buttons in the graph to switch to showing T or H or B.
Re: Dashticz - Feature Requests
Posted: Saturday 24 June 2017 13:25
by mlamie
htilburgs wrote:
Sorry, I forgot to reply, but it works great!!
Thanx for the hard work.
CSS:
Code: Select all
.icon.calendar_icon {
max-width: 45px !important;
margin-top: -6px !important;
margin-left: -6px !important;
}
Great screenshot. I would like to have the F1 calander in Dashticz as well. Can you share your setup? Which sources you used? etc...
Thanks
Re: Dashticz - Feature Requests
Posted: Saturday 24 June 2017 16:22
by HansieNL
- Spoiler: show
mlamie wrote:htilburgs wrote:
Sorry, I forgot to reply, but it works great!!
Thanx for the hard work.
CSS:
Code: Select all
.icon.calendar_icon {
max-width: 45px !important;
margin-top: -6px !important;
margin-left: -6px !important;
}
Great screenshot. I would like to have the F1 calander in Dashticz as well. Can you share your setup? Which sources you used? etc...
Thanks
https://www.domoticz.com/forum/viewtopi ... 20#p134446
Re: Dashticz - Feature Requests
Posted: Tuesday 27 June 2017 16:39
by Derik
Dear...
Perhaps possible to make a other screen [ url ] for buienradar?
Now we are looking to a picture for the past hour...
Perhaps possible to implement future 3 hours:
https://www.buienradar.nl/nederland/nee ... adar/3uurs
Or someone help with a how to change the url in the beta version.
Like to hear...
Thanks
Re: Dashticz - Feature Requests
Posted: Wednesday 28 June 2017 21:52
by robgeerts
Unfortunately, there's no image you can use for the upcoming 3 hours.... havent found one yet..
Re: Dashticz - Feature Requests
Posted: Wednesday 28 June 2017 22:30
by jake
jake wrote:Feature request:
- Ability to change amount of digits in a block value (for instance: don't show 7.123 kWh today, but 7.1 kWh today) this to save space in the block
- Ability to change a block's value unit (for instance not 1500 Watt, but 1500 W) this to save space in the block
Not needed for me, but possibly for some specific cases
- Ability to convert a block value (for instance, not 1500W, but 1.5kW)
bump

Re: Dashticz - Feature Requests
Posted: Wednesday 28 June 2017 22:56
by blacksn0w
jake wrote:jake wrote:Feature request:
- Ability to change a block's value unit (for instance not 1500 Watt, but 1500 W) this to save space in the block
Will have a look on this, since the data is submitted completely from Domoticz, it would be neccesary to submit the -to replaced text- and the -replace with- text.
For example
blocks[123]['unit'] = 'Watt,W'
//Just pushed this to Github, waiting for merge (
https://github.com/robgeerts/dashticz_v2/pull/107)
Usage: blocks[123]['unit'] = 'Watt;W';
Re: Dashticz - Feature Requests
Posted: Thursday 29 June 2017 8:28
by robgeerts
Available in latest beta!
Re: Dashticz - Feature Requests
Posted: Thursday 29 June 2017 19:08
by jake
robgeerts wrote:Available in latest beta!
I just did a git pull, I updated the config.js file:
Code: Select all
blocks['39_2'] = {}
blocks['39_2']['width'] = 4;
blocks['39_2']['title'] = 'Opbrengst' //vermogen in Watt
blocks['39_2']['unit'] = 'Watt;W';
blocks['142_1'] = {}
blocks['142_1']['width'] = 4;
blocks['142_1']['title'] = 'Verbruik' //vermogen in Watt
blocks['142_1']['unit'] = 'Watt;W';
But no change, I still see 'Watt' instead of 'W'
Re: Dashticz - Feature Requests
Posted: Thursday 29 June 2017 20:31
by robgeerts
Ah, you are using another block then the one blacksn0w created it for...
blacksn0w wrote:Usage: blocks[123]['unit'] = 'Watt;W';
@blacksn0w: he's using a block wich is defined in main.js... in the IF on row 944, 976 or 1019.
Are you already on it or shall I take a look?
Re: Dashticz - Feature Requests
Posted: Thursday 29 June 2017 23:21
by blacksn0w
robgeerts wrote:Ah, you are using another block then the one blacksn0w created it for...
blacksn0w wrote:Usage: blocks[123]['unit'] = 'Watt;W';
@blacksn0w: he's using a block wich is defined in main.js... in the IF on row 944, 976 or 1019.
Are you already on it or shall I take a look?
I'm not really familiar with this devices, so i would be glad if you could have a look.
I'm afraid i would destroy the whole function more than adding this feature

Re: Dashticz - Feature Requests
Posted: Saturday 01 July 2017 22:37
by robgeerts
Will do

Re: Dashticz - Feature Requests
Posted: Sunday 02 July 2017 15:00
by robgeerts
jake wrote:robgeerts wrote:Available in latest beta!
I just did a git pull, I updated the config.js file:
Code: Select all
blocks['39_2'] = {}
blocks['39_2']['width'] = 4;
blocks['39_2']['title'] = 'Opbrengst' //vermogen in Watt
blocks['39_2']['unit'] = 'Watt;W';
blocks['142_1'] = {}
blocks['142_1']['width'] = 4;
blocks['142_1']['title'] = 'Verbruik' //vermogen in Watt
blocks['142_1']['unit'] = 'Watt;W';
But no change, I still see 'Watt' instead of 'W'
Could you test latest beta?
Re: Dashticz - Feature Requests
Posted: Sunday 02 July 2017 22:55
by jake
robgeerts wrote:jake wrote:robgeerts wrote:Available in latest beta!
I just did a git pull, I updated the config.js file:
Code: Select all
blocks['39_2'] = {}
blocks['39_2']['width'] = 4;
blocks['39_2']['title'] = 'Opbrengst' //vermogen in Watt
blocks['39_2']['unit'] = 'Watt;W';
blocks['142_1'] = {}
blocks['142_1']['width'] = 4;
blocks['142_1']['title'] = 'Verbruik' //vermogen in Watt
blocks['142_1']['unit'] = 'Watt;W';
But no change, I still see 'Watt' instead of 'W'
Could you test latest beta?
I did, but no change, still displaying 'Watt' instead of the requested 'W'. I at the moment use the PVoutput.org wattage and the P1 smart meter wattage with the new 'units' style.
Re: Dashticz - Feature Requests
Posted: Thursday 13 July 2017 9:35
by Derik
Dear Rob,
a option to place the day data in 1 line.:

- ScreenShot108.jpg (73.32 KiB) Viewed 2594 times
Save space and read simple?
Change the color of this weather icons....
Change the color of temp automatically when
hot = red
warm = orange
normal = white
cold = bleu
very cold.....
Edit:
Please also the ccs to change the text size and color [ please

]
Re: Dashticz - Feature Requests
Posted: Monday 24 July 2017 20:25
by sebasjuh
I saw the Formula1 schedule would it be something to add a football calendar to see what matches are coming up (dutch eredivisie league or maybe only for your favorite football club) ?
Re: Dashticz - Feature Requests
Posted: Monday 24 July 2017 22:17
by HansieNL
sebasjuh wrote:I saw the Formula1 schedule would it be something to add a football calendar to see what matches are coming up (dutch eredivisie league or maybe only for your favorite football club) ?
The F1 calendar is just a personal Google calender, so nothing special. If you can find a ics file from your favorite football club you can add it to Dashticz the same way as the F1 calndar.
Re: Dashticz - Feature Requests
Posted: Tuesday 25 July 2017 9:20
by garethhowell
Ability to vary the column layout depending on the display device.
My dashboard is a pretty standard 5,5,2 column layout with the main switches and scenes in the middle column. This makes sense on a tablet display, but not on a phone.
What I'd like to be able to do is present column 2 first if the display device is less that a certain width.