Computed widgets & expressions
A computed source derives a value from several tags in real time.
- On the widget, choose the computed source.
- Define variables, each a
{ name, deviceId, tag }slot — e.g.a= meter1.power,b= meter2.power. - Write an expression using those names:
a + b,(a + b) / 2,v * i, etc.
The widget subscribes to every variable's stream and re-evaluates the formula on each tick. Variables can come from different devices, so you can total a fleet or compute power = volts × amps across two sensors.