gitextract_h38c8r86/ ├── .github/ │ └── workflows/ │ ├── arduino-ci.yaml │ └── arduino-lint.yaml ├── LICENSE ├── README.md ├── commands.md ├── examples/ │ ├── argparser/ │ │ └── argparser.ino │ ├── basic/ │ │ └── basic.ino │ ├── gpio/ │ │ └── gpio.ino │ ├── network/ │ │ └── network.ino │ ├── other_uart_channel/ │ │ └── other_uart_channel.ino │ └── vfs/ │ └── vfs.ino ├── library.json ├── library.properties └── src/ ├── ESP32Console/ │ ├── Commands/ │ │ ├── CoreCommands.cpp │ │ ├── CoreCommands.h │ │ ├── GPIOCommands.cpp │ │ ├── GPIOCommands.h │ │ ├── NetworkCommands.cpp │ │ ├── NetworkCommands.h │ │ ├── SystemCommands.cpp │ │ ├── SystemCommands.h │ │ ├── VFSCommands.cpp │ │ └── VFSCommands.h │ ├── Console.cpp │ ├── Console.h │ ├── ConsoleCommand.h │ ├── ConsoleCommandBase.h │ ├── ConsoleCommandD.cpp │ ├── ConsoleCommandD.h │ ├── Helpers/ │ │ ├── InputParser.cpp │ │ ├── InputParser.h │ │ ├── PWDHelpers.cpp │ │ └── PWDHelpers.h │ ├── OptionsConsoleCommand.cpp │ └── OptionsConsoleCommand.h ├── ESP32Console.h ├── cxxopts/ │ └── cxxopts.hpp └── kilo/ ├── CREDITS ├── kilo.cpp └── kilo.h