I'm expecting this value, my power meter's Serial #. 2244898654
I'm getting the 32-bit signed version of it. I thought I could convert/cast it "toLong()", but that obviously isn't working.
Can't seem to figure out this basic operation.Ugh

I'm expecting this value, my power meter's Serial #. 2244898654
I'm getting the 32-bit signed version of it. I thought I could convert/cast it "toLong()", but that obviously isn't working.
Can't seem to figure out this basic operation.Ugh

try adding
productInfo.serial.format("%u")
to your println.
You'll get a string with the unsigned value.
Awesome. That worked. Thanks