Search found 1 match

by Paski
Sun Nov 09, 2025 6:53 pm
Forum: MegunoLink
Topic: SendData hex number
Replies: 1
Views: 5907

SendData hex number

I’ve got a reproducible glitch: without a timestamp the value is fine, add a timestamp and the Y value shows up as a hex. // OK → numeric shown correctly (e.g., 25) gT1.SendData("temp1", (float)t1_C); // NOT OK → arrives as hex gT1.SendData("temp1", ts.c_str(), (float)t1_C); Targ...