I have switched from a Teensy2 to a Teensy3 and now much of my code won't work. I've worked around most of the issues (using "while(!Serial){}", for example, after baud rate is established) but I am stuck on converting floats to strings for simple string concatenation. I was using dtostrf, but this doesn't work on the 3.0. I see that some suggest using sprintf, but I've not been able to make that work.
I would appreciate seeing a *simple* FULL code example to take the number 12.345 and have the message "number = 12.345" appear on the serial monitor.
Any assistance would be greatly appreciated. Thanks in advance!