Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Hi Peter. I see! Is there any other way to send currentTemp using radio.write then? Thanks!! Commented May 23, 2014 at 16:28
  • I'm not familiar with the radio.* functions you are using. In C, I'd use printf("%5.2f\n", currentTemp); The %5.2f" tells the print function that the variable is a float, and it should be formatted with two digits after the decimal. Commented May 23, 2014 at 18:21