QuickSerial is a C++ library for Arduino that enhances the standard Serial.print
and Serial.println
functions. It allows you to easily print multiple values of different types, arrays, booleans, and byte values with custom formatting — including automatic brackets, spacing, and separators.
💡 Ideal for debugging or generating structured, readable output in embedded applications.
- ✅ Concatenate and print multiple arguments of any type
- ✅ Automatic closing brackets for
[
,{
,(
,<
- ✅ Custom separators and spacing
- ✅ Arrays and byte arrays fully supported
- ✅ Byte values are printed in
0x..
format - ✅ Boolean values displayed as
'true'
/'false'