I have a device with following attributes - machineID, spindleID, rpm, doorStatus
I have a dashboard with 2 gauges to be shown based on what I send to this device.
If machineID=1 and spindleID=1 show rpm on gauge 1
if machineID=1 and spindleID=2 show rpm on gauge 2
How can I put the conditional statements onto gauges?
I was trying like -
{{value.machineID}}==1 && {{value.spindleID}} == 1 on gauge 1
{{value.machineID}}==1 && {{value.spindleID}} == 2 on gauge 2
This does not work … I get same rpm reading on both gauges