-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.txt
More file actions
18 lines (12 loc) · 732 Bytes
/
readme.txt
File metadata and controls
18 lines (12 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
This is a library to use printf in arduino sketches, so that it writes to Serial.
Installation
--------------------------------------------------------------------------------
To install this library, just place this entire folder as a subfolder in your
~/Arduino/libraries folder.
Note : Support for %f is enabled by this library, and may make your sketch larger.
Note : %llu support is missing in Arduino core libraries, so this package provides
a helper function to convert long long unsigned int to C-strings : ulltoa.
Use
--------------------------------------------------------------------------------
Just add "#include <printfToSerial.h> to your sketch, and let's get printing !
See example for some examples of use.