GY-63_MS5611/libraries/PrintCharArray/readme.md

18 lines
419 B
Markdown
Raw Normal View History

2020-11-27 05:28:57 -05:00
# PrintCharArray
Arduino library to print to a char array
# Description
2017-12-09 14:39:12 -05:00
PrintCharArray is a class that buffers a number of print statements in a char array.
This char array can be processed later.
2020-11-27 05:28:57 -05:00
- buffer slowly generated data, and send it with minimum time between bytes
- print to buffer to see how many chars the output is;
2017-12-09 14:39:12 -05:00
use to prevent "display line overflow"
(e.g. floats)
2020-11-27 05:28:57 -05:00
## Operation
2017-12-09 14:39:12 -05:00
2020-11-27 05:28:57 -05:00
See examples