To do this, it’s easier if you don’t use a Group in your sitemap. (you can also do it with Groups, but you have more control with individual entries)
Use a Frame, then list each individual Item and make another nesting (using {}
) to show more info when you click each entry.
something like:
Frame {
Text label="Temperatures" icon="temperature" {
Text item=Temperature_Node50 valuecolor=[>35="red",>25="orange",>15="green",<=5="blue"] {
Text item=Node50Voltage
Text item=Node50Rssi
}
Text item=Temperature_Node51 valuecolor=[>35="red",>25="orange",>15="green",<=5="blue"] {
Text item=Node51Voltage
Text item=Node51Rssi
}
}
}
Notes:
- Use Code Fences
- Use VSCode
- Your second half of the items file has duplicate Item names (e.g.
Node50Rssi
is used 10 times) - Why not a Number type for the RSSI Items?
- I don’t think that you can do this:
You can change the colour based on the Item value that you display (not based on another Item)
You can use valuecolor for your RSSI and Voltage Items in the sitemap.
You could try to use a rule that notifies you if these 2 values drop below a defined threshold