Re: Dashticz Dial - Features, Fixes & Updates
Posted: Tuesday 09 June 2020 16:11
This looks really nice, if this could be implemented.
Open source Home Automation System
https://forum.domoticz.com/
This looks really nice, if this could be implemented.
The wind unit of measurement can be set in Domoticz. Dashticz then uses this in the Wind dial. Mine is set to MPH but you can set yours to knots.
Yes, that occasionally happens with browsers when there have been a lot of CSS changes. The dials have lots of styling. The browser caches this styling so you don't have to reload the CSS file each time. The only downside is that sometime its too clever. Hence you need to clear your browser cache for that page. Holding down CTRL + F5 should work too. As that is basically what incognito mode does ... loads a page with zero cache.
Code: Select all
blocks['Keuken-Eiland']= {}
blocks['Keuken-Eiland'] ['title'] = 'Keuken-Eiland', // title that will appear on the dial (mandatory)
blocks['Keuken-Eiland'] ['type'] = 'dial', // indentifies this block as a dial (mandatory)
blocks['Keuken-Eiland'] ['width'] = 3, // dial width (optional, default 3)
blocks['Keuken-Eiland'] ['height'] = 250, // dial height (optional, default based on width)
blocks['Keuken-Eiland'] ['color'] = '#57c4d6' // color theme for the dial (default orange)
blocks['Keuken-Eiland'] ['last_update'] = true, // shows last update info (default: true)
blocks['Keuken-Eiland'] ['flash'] = true, // outer dial will flash with user or default color (default: 0)
blocks['Keuken-Eiland'] ['dialimage'] = 'img/toon.png', // show an image instead of the calendar icon (default: false)
blocks['Keuken-Eiland'] ['dialicon'] = 'fas fa-train', // show a different font awesome icon (default: 'fas fa-calendar-alt')
blocks['Keuken-Eiland'] ['showring'] = 'true' // always show the outer color ring (default: false)
Code: Select all
blocks['Keuken-Eiland'] ['idx'] = 123,
got it! unbelievable how you can stare youself blind for something so obviousclinkadink wrote: ↑Tuesday 14 July 2020 12:45 I cannot see idx in your block. For example:Code: Select all
blocks['Keuken-Eiland'] ['idx'] = 123,