Hi,
I am using the outrider tire pressure sensors and I am able to display the custom stream.
How can I convert the tire pressures to bar?
I tried a bit with perplexity but without luck ![]()
Thanks.
Hi,
I am using the outrider tire pressure sensors and I am able to display the custom stream.
How can I convert the tire pressures to bar?
I tried a bit with perplexity but without luck ![]()
Thanks.
I don’t have those fields to test but does this work?
{
for (let m of icu.fit.record) {
data.setAt(m.timestamp.value, m.front_tyre_pressure?.value/14.50377)
}
}
See here
In your Dialog posted above set format to .2f
Many thanks. ![]()