├── .gitignore ├── README ├── SoftwareSerialWithHalfDuplex.cpp ├── SoftwareSerialWithHalfDuplex.h ├── examples ├── SoftwareSerialExample │ └── SoftwareSerialExample.ino ├── SoftwareSerialWithHalfDuplex_test_PartB │ └── SoftwareSerialWithHalfDuplex_test_PartB.ino ├── SoftwareSerialWithHalfDuplex_test_partA │ └── SoftwareSerialWithHalfDuplex_test_partA.ino └── TwoPortReceive │ └── TwoPortReceive.ino └── keywords.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/README -------------------------------------------------------------------------------- /SoftwareSerialWithHalfDuplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/SoftwareSerialWithHalfDuplex.cpp -------------------------------------------------------------------------------- /SoftwareSerialWithHalfDuplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/SoftwareSerialWithHalfDuplex.h -------------------------------------------------------------------------------- /examples/SoftwareSerialExample/SoftwareSerialExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/examples/SoftwareSerialExample/SoftwareSerialExample.ino -------------------------------------------------------------------------------- /examples/SoftwareSerialWithHalfDuplex_test_PartB/SoftwareSerialWithHalfDuplex_test_PartB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/examples/SoftwareSerialWithHalfDuplex_test_PartB/SoftwareSerialWithHalfDuplex_test_PartB.ino -------------------------------------------------------------------------------- /examples/SoftwareSerialWithHalfDuplex_test_partA/SoftwareSerialWithHalfDuplex_test_partA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/examples/SoftwareSerialWithHalfDuplex_test_partA/SoftwareSerialWithHalfDuplex_test_partA.ino -------------------------------------------------------------------------------- /examples/TwoPortReceive/TwoPortReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/examples/TwoPortReceive/TwoPortReceive.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickstedman/SoftwareSerialWithHalfDuplex/HEAD/keywords.txt --------------------------------------------------------------------------------