It mainly contains dial related changes.
You can now add multiple values to most dial types.
or, add a needle representing the value of another device to for instance a dial switch :
Code: Select all
blocks['sw1'] = {
idx: 1056,
type:'dial',
values: [
{
idx: 1057,
isNeedle: true
},
],
width: 6,
showring: true,
shownumbers: true,
min: 0,
max: 10
}
Code: Select all
blocks['p1counters'] = {
type: 'dial',
idx: 43,
values: [
{
value: 'Data0',
unit: 'kWh',
label: 't1',
scale: 0.001
},
{
value: 'Data1',
unit: 'kWh',
label: 't2',
scale: 0.001
},
{
value: 'Data2',
unit: 'kWh',
label: 'ret t1',
scale: 0.001
},
{
value: 'Data3',
unit: 'kWh',
label: 'ret t2',
scale: 0.001
},
],
showvalue: false,
animation: false,
shownumbers: true,
fixed: true,
width: 6
};
https://dashticz.readthedocs.io/en/beta ... -12-3-2021
If you're using dial values already, don't forget to read the upgrade instructions:
https://dashticz.readthedocs.io/en/beta ... /v376.html