Is there a MultiValuetile?

I am integrating a branch circuit meter, which provides energy values for the entire panel an each individual circuit. I want to put things together in one tile per breaker and not per value. Per breaker I get values like Volts, Amps, kW, and kWh.

Is there a way to modify this to show more than one value in a tile?

valueTile(“Kwhts”, “device.Kwhts”, width: 3, height: 1) {
state “default”, label:‘Total System ${currentValue} kWh’
}

sendEvent(name: “Kwhts”, value: respss.data.SystemData.tsKwh)

Thanks in advance!

You can try to concatenate two Attributes into a single string in your parse method; but no other way that I can think of.

Multi attribute tile?

1 Like

I knew there was something I was forgetting… :grinning:

Only one multi-attribute Tile per DTH, right?

I believe so, now not sure about smart apps and possible tile for each child?

@tgauchat concatenate worked perfectly! Thanks!

1 Like