RayLivingston:
I like the stdinout part, but where is printf in there?Regards,
Ray L.
"printf" is already "in there" (it's loaded by Arduino.h when it "includes" <stdio.h>).
As it sits, printf goes nowhere. But if you include my Stdinout library and then use "STDIO.open (Serial)" you will see that printf now goes to the serial port.
Make sense?
BTW, to make the best of it, you should also use the extended print library.
For this one, you go into your Arduino directory, rename Print.cpp and Print.h to something like Print.cpp.bak and Print.h.bak, then COPY the new Print.cpp and Print.h into the directory.