├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── FormattingSerialDebug.cpp ├── FormattingSerialDebug.h ├── LICENSE ├── LedDebug.h ├── Makefile ├── README.md ├── SerialDebug.h ├── VERSION ├── examples ├── FormattingSerialDebug │ └── FormattingSerialDebug.ino ├── LedDebug │ └── LedDebug.ino └── SerialDebug │ └── SerialDebug.ino └── library.properties /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /FormattingSerialDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/FormattingSerialDebug.cpp -------------------------------------------------------------------------------- /FormattingSerialDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/FormattingSerialDebug.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/LICENSE -------------------------------------------------------------------------------- /LedDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/LedDebug.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/README.md -------------------------------------------------------------------------------- /SerialDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/SerialDebug.h -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.0 -------------------------------------------------------------------------------- /examples/FormattingSerialDebug/FormattingSerialDebug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/examples/FormattingSerialDebug/FormattingSerialDebug.ino -------------------------------------------------------------------------------- /examples/LedDebug/LedDebug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/examples/LedDebug/LedDebug.ino -------------------------------------------------------------------------------- /examples/SerialDebug/SerialDebug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/examples/SerialDebug/SerialDebug.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlogiacco/MicroDebug/HEAD/library.properties --------------------------------------------------------------------------------