Show/Hide Gauge issue based on Manifold Gauge Pressure

Hi,

I have current Triggers to show/hide Gauges based on Manifold Gauge Pressure;
Data is coming from a CAN Analyzer via a Link G4+ ECU

Current configuration:
if the Manifold Gauge Pressure is less than 1 - Hide Gauge
if the Manifold Gauge Pressure is greater than 1 - Show Gauge

This seems to work on occasion… however the trigger behavior isn’t consistent, to the point that the triggers reset sometimes, but not always…

This results in the positive (above zero) gauge being displayed sometimes - but not always…

However if i re-import the dash entirely - the issue is resolved temporarily, then sporadically breaks functionality again


Is it best practice to show/hide objects like this via an input - Manifold Pressure, etc?
Or is it recommended to rotate a Dummy value based on Manifold Pressure - and then and show/hide objects based on the Dummy value instead (similar to the Animation Example)?

Example:
if the Manifold Gauge Pressure is less than 1 - rotate Dummy 01 down
if the Manifold Gauge Pressure is greater than 1 - rotate Dummy 01 up
then
if Dummy 01 equals 0 - Hide Gauge
if Dummy 01 equals 1 - Show Gauge


Thanks

This sounds like the trigger reset condition is not working proper. What kind of reset conditions you have on those triggers?

Typically this sort of scenario is set by:

if the Manifold Gauge Pressure is less than 1 - Hide Gauge
Trigger can be fired again if Manifold Gauge Pressure is greater than 1.

if the Manifold Gauge Pressure is greater than 1 - Show Gauge
Trigger can be fired again if Manifold Gauge Pressure is less than 1.

Yes I suspected it was the reset actions incorrectly configured


I currently have:

if the Manifold Gauge Pressure is less than 1 - Hide Gauge

  • Trigger can fire again if Manifold Gauge Pressure is less or equal to ‘0’
  • Reset Condition if Manifold Gauge Pressure is less or equal to ‘0’

if the Manifold Gauge Pressure is greater than 1 - Show Gauge

  • Trigger can fire again if Manifold Gauge Pressure is less or equal to ‘0’
  • Reset Condition if Manifold Gauge Pressure is less or equal to ‘0’


    Thanks