Page 1 of 1

Gauge doesn't work

Posted: Thu Nov 13, 2025 8:20 pm
by Huggi0619
Hi Guys

I want to display a value at a gauge but it doesn't work and I can't figure out what the problem is.
Ist there anybody who can help me please? Wouldbe realy nice.
Here ist the code block from my arduino UNO R4 minima:

Code: Select all

    Serial.print("{Gau:IPGauge5|");
    Serial.print(linearSpeedKmh);
    Serial.println("}");
    ;
The propertiers of the gauge look like the pic in the attachment.

Thank you very much for your fast response and help
kind regards Huggi0619

Re: Gauge doesn't work

Posted: Tue Dec 09, 2025 8:53 am
by philr
Assuming your gauge control in the interface is named IPGauge5, you should send something like this from your Arduino:

Code: Select all

Serial.print("{UI|SET|IPGauge5.Value=");
Serial.print(linearSpeedKmh);
Serial.println("}");
A few important notes:

Use UI as the prefix

Use the SET command

Use the .Value property (or whichever property your gauge uses — check in the Interface Designer)

Make sure the entire command is wrapped in {} braces

If you have multiple interface panels or want to target a specific channel, you can also use this format:

Code: Select all

{UI:ChannelName|SET|IPGauge5.Value=123}
This ensures MegunoLink correctly parses and applies the value to your gauge.