GY-63_MS5611/libraries/PrintCharArray
2022-08-03 21:56:07 +02:00
..
.github add funding.yml 2022-08-03 21:56:07 +02:00
examples 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
test 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
.arduino-ci.yml 0.3.1 PrintCharArray 2021-11-13 16:35:33 +01:00
keywords.txt 0.3.1 PrintCharArray 2021-11-13 16:35:33 +01:00
library.json 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
library.properties 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
LICENSE 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
PrintCharArray.h 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00
readme.md 0.3.2 PrintCharArray 2021-12-24 13:08:51 +01:00

Arduino CI Arduino-lint JSON check License: MIT GitHub release

PrintCharArray

Arduino library to print to a char array.

Description

PrintCharArray is a class that implements the Print interface and an internal char array. It will effectively buffer a number of print statements and allows it to be printed or processed (for real) later. The internal buffer can be set in the constructor and has a minimum of 20 bytes and a maximum of 250 bytes. Default size is 100 bytes.

Applications

  • Buffer slowly generated data, and send it with minimum time between bytes. Use it e.g. for faster printing to SD card or Ethernet which can handle larger buffers.
  • print to buffer to see how many chars the output will be.
    • use to prevent "display line overflow" (e.g. floats).
    • use to right align output (see examples).

Related to https://github.com/RobTillaart/PrintSize and https://github.com/RobTillaart/PrintString.

Interface

  • PrintCharArray(uint8_t size = 100) constructor, default size of 100 bytes.
  • size_t write(uint8_t c) workhorse I of Print interface.
  • size_t write(uint8_t * str, uint8_t length) workhorse II of Print interface.
  • void clear() wipes the internal buffer.
  • int available() shows how much space is left in the internal buffer. Replaces free().
  • int size() current usage of the buffer.
  • int bufSize() size of the whole buffer. Recall that a char array must have a '\0' delimiter.
  • char * getBuffer() to access the buffer.

Operation

See examples.

Future

  • testing
  • examples
    • inject spaces in "middle align" example? possible?
    • rename some
    • add real live examples.
  • add functions like repeat(char c) to inject e.g. 7 spaces etc.
  • add error flag