Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robtillaart/printstring
Arduino library to print to a String
https://github.com/robtillaart/printstring
arduino print string
Last synced: about 2 months ago
JSON representation
Arduino library to print to a String
- Host: GitHub
- URL: https://github.com/robtillaart/printstring
- Owner: RobTillaart
- License: mit
- Created: 2020-04-30T14:30:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T09:11:11.000Z (9 months ago)
- Last Synced: 2024-08-07T18:26:57.299Z (5 months ago)
- Topics: arduino, print, string
- Language: C++
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![Arduino CI](https://github.com/RobTillaart/PrintString/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
[![Arduino-lint](https://github.com/RobTillaart/PrintString/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/PrintString/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/PrintString/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/PrintString/actions/workflows/jsoncheck.yml)
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/PrintString.svg)](https://github.com/RobTillaart/PrintString/issues)[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/PrintString/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/PrintString.svg?maxAge=3600)](https://github.com/RobTillaart/PrintString/releases)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/PrintString.svg)](https://registry.platformio.org/libraries/robtillaart/PrintString)# PrintString
Arduino library to print to a String.
## Description
PrintString is a class that buffers a number of print statements in a String.
This String can be requested to process later.- buffer slowly generated data, and send it with minimum time between bytes
e.g. to maximize packets for Ethernet.
- print to buffer to see how many chars the output is;
use to prevent "display line overflow"
(e.g. floats)#### Related
- https://github.com/RobTillaart/PrintCharArray captures data in a char array buffer.
- https://github.com/RobTillaart/PrintSize counts length of a number of print commands.
- https://github.com/RobTillaart/PrintString captures data in a String.## Interface
```cpp
#include "PrintString.h"
```- **PrintString()** constructor.
- **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 String buffer
- **int size()** current usage of the buffer.
- **String getString()** to access the buffer.## Operational
See examples.
## Future
#### Must
- documentation
#### Should
- keep in sync with PrintCharArray class
- testing
- examples
- add new ones
- rename examples
- add functions like **repeat(char c)** to inject e.g. 7 spaces etc.
- add error flag#### Could
- PRINTSTRING_LIB_VERSION
#### Wont
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.Thank you,