├── .bumpversion.cfg ├── LICENSE.txt ├── README.md ├── examples ├── ListDevices │ └── ListDevices.ino ├── ReadDS1307 │ └── ReadDS1307.ino └── SoftWire_MLX90614 │ └── SoftWire_MLX90614.ino ├── extras └── astylerc ├── library.json ├── library.properties └── src ├── SoftWire.cpp └── SoftWire.h /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/README.md -------------------------------------------------------------------------------- /examples/ListDevices/ListDevices.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/examples/ListDevices/ListDevices.ino -------------------------------------------------------------------------------- /examples/ReadDS1307/ReadDS1307.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/examples/ReadDS1307/ReadDS1307.ino -------------------------------------------------------------------------------- /examples/SoftWire_MLX90614/SoftWire_MLX90614.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/examples/SoftWire_MLX90614/SoftWire_MLX90614.ino -------------------------------------------------------------------------------- /extras/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/extras/astylerc -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/library.properties -------------------------------------------------------------------------------- /src/SoftWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/src/SoftWire.cpp -------------------------------------------------------------------------------- /src/SoftWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/SoftWire/HEAD/src/SoftWire.h --------------------------------------------------------------------------------