├── .github └── workflows │ └── doxygen-gh-pages.yml ├── .gitignore ├── .gitmodules ├── Doxyfile ├── LICENSE ├── README.md ├── examples ├── master.cpp └── slave.cpp ├── platformio.ini └── src ├── SoftwareLin.cpp └── SoftwareLin.h /.github/workflows/doxygen-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/.github/workflows/doxygen-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/.gitmodules -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/README.md -------------------------------------------------------------------------------- /examples/master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/examples/master.cpp -------------------------------------------------------------------------------- /examples/slave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/examples/slave.cpp -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/SoftwareLin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/src/SoftwareLin.cpp -------------------------------------------------------------------------------- /src/SoftwareLin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-B-W/ESP32-SoftwareLIN/HEAD/src/SoftwareLin.h --------------------------------------------------------------------------------