embeddedartistry / arduino-printf

Add printf support to the Arduino SDK
MIT License
91 stars 15 forks source link

Does this library include a sprintf() or snprintf() implementation? #2

Closed scottchiefbaker closed 4 years ago

scottchiefbaker commented 4 years ago

This may be a documentation related question...

Does arduino-printf include a sprintf() or snprintf() implementation?

phillipjohnston commented 4 years ago

Yes, s[n]printf as well as v[sn]printf if you need to use it with varargs. Will add that to README as well.

https://github.com/embeddedartistry/arduino-printf/blob/master/src/printf.h

scottchiefbaker commented 4 years ago

Excellent... thank you!