System info widget not working well

Hey,
I would like to get some help for my modified system info widget. I also tested with the original and thats not worked either.

code.txt (17.3 KB)

As you can see on the screenshot, only the first (CPU) gauge works well, the others doesn’t.

The code is in the text file

Thanks for the help!

It looks like you have an issue with how the unit are defined on each of your percent items.

When you use @itemName in the widget that first tries to fetch the display state (the state of the item formatted by whatever state description the item has) and if that fails, it falls back to the actual state of the item.

When you set the item for the gauge, however, the gauge always pulls the actual state. So, what you see is that the first gauge uses an item where the displayState is 36.0%, but the state is also 36.0%. However, the second gauge, for example, uses an item that has a displayState of 24.6% but mostly likely has a state of 0.246. And the gauge is correctly showing you 0.246.

If you want to see this more directly, use the widget expression tester in the developer sidebar and put in:

=items.nameofmemorypercentitem

You will an object in the output that clearly shows the difference between the state and displayState.

Carefully check how each of your items are defined.

thanks for the help. I just added one-one metadata for the items and now it works fine