├── .github └── workflows │ └── LibraryBuild.yml ├── LICENSE.txt ├── README.md ├── examples ├── BMA020SoftI2C │ └── BMA020SoftI2C.ino ├── BMA020SoftWire │ └── BMA020SoftWire.ino ├── Eeprom24AA1025SoftI2C │ └── Eeprom24AA1025SoftI2C.ino ├── Eeprom24AA1025SoftWire │ └── Eeprom24AA1025SoftWire.ino ├── EepromFill │ ├── EepromFill.ino │ └── sendfiles.pl ├── I2CScanSoftI2C │ └── I2CScanSoftI2C.ino ├── I2CScanSoftWire │ └── I2CScanSoftWire.ino ├── I2CShell │ ├── I2CShell.ino │ └── README.md ├── MLX90614Soft │ └── MLX90614Soft.ino ├── TSL2561Soft │ ├── TSL2561Soft.h │ └── TSL2561Soft.ino ├── simpleSoftI2C │ └── simpleSoftI2C.ino ├── simpleSoftWire │ └── simpleSoftWire.ino └── stretchTest │ └── stretchTest.ino ├── extras └── tests │ ├── baseline │ ├── baseline.ino │ ├── mockup.cpp │ └── mockup.h │ ├── hardi2c │ └── hardi2c.ino │ ├── results.txt │ ├── slowsoft │ ├── SlowSoftI2CMaster.cpp │ ├── SlowSoftI2CMaster.h │ └── slowsoft.ino │ ├── slowwire │ └── slowwire.ino │ ├── softi2c │ └── softi2c.ino │ ├── softi2cpt │ └── softi2cpt.ino │ ├── softwire │ └── softwire.ino │ ├── tinywire │ └── tinywire.ino │ ├── usiwire │ └── usiwire.ino │ └── wire │ └── wire.ino ├── keywords.txt ├── library.json ├── library.properties └── src ├── SoftI2CMaster.h └── SoftWire.h /.github/workflows/LibraryBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/.github/workflows/LibraryBuild.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/README.md -------------------------------------------------------------------------------- /examples/BMA020SoftI2C/BMA020SoftI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/BMA020SoftI2C/BMA020SoftI2C.ino -------------------------------------------------------------------------------- /examples/BMA020SoftWire/BMA020SoftWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/BMA020SoftWire/BMA020SoftWire.ino -------------------------------------------------------------------------------- /examples/Eeprom24AA1025SoftI2C/Eeprom24AA1025SoftI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/Eeprom24AA1025SoftI2C/Eeprom24AA1025SoftI2C.ino -------------------------------------------------------------------------------- /examples/Eeprom24AA1025SoftWire/Eeprom24AA1025SoftWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/Eeprom24AA1025SoftWire/Eeprom24AA1025SoftWire.ino -------------------------------------------------------------------------------- /examples/EepromFill/EepromFill.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/EepromFill/EepromFill.ino -------------------------------------------------------------------------------- /examples/EepromFill/sendfiles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/EepromFill/sendfiles.pl -------------------------------------------------------------------------------- /examples/I2CScanSoftI2C/I2CScanSoftI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/I2CScanSoftI2C/I2CScanSoftI2C.ino -------------------------------------------------------------------------------- /examples/I2CScanSoftWire/I2CScanSoftWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/I2CScanSoftWire/I2CScanSoftWire.ino -------------------------------------------------------------------------------- /examples/I2CShell/I2CShell.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/I2CShell/I2CShell.ino -------------------------------------------------------------------------------- /examples/I2CShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/I2CShell/README.md -------------------------------------------------------------------------------- /examples/MLX90614Soft/MLX90614Soft.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/MLX90614Soft/MLX90614Soft.ino -------------------------------------------------------------------------------- /examples/TSL2561Soft/TSL2561Soft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/TSL2561Soft/TSL2561Soft.h -------------------------------------------------------------------------------- /examples/TSL2561Soft/TSL2561Soft.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/TSL2561Soft/TSL2561Soft.ino -------------------------------------------------------------------------------- /examples/simpleSoftI2C/simpleSoftI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/simpleSoftI2C/simpleSoftI2C.ino -------------------------------------------------------------------------------- /examples/simpleSoftWire/simpleSoftWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/simpleSoftWire/simpleSoftWire.ino -------------------------------------------------------------------------------- /examples/stretchTest/stretchTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/examples/stretchTest/stretchTest.ino -------------------------------------------------------------------------------- /extras/tests/baseline/baseline.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/baseline/baseline.ino -------------------------------------------------------------------------------- /extras/tests/baseline/mockup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/baseline/mockup.cpp -------------------------------------------------------------------------------- /extras/tests/baseline/mockup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/baseline/mockup.h -------------------------------------------------------------------------------- /extras/tests/hardi2c/hardi2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/hardi2c/hardi2c.ino -------------------------------------------------------------------------------- /extras/tests/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/results.txt -------------------------------------------------------------------------------- /extras/tests/slowsoft/SlowSoftI2CMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/slowsoft/SlowSoftI2CMaster.cpp -------------------------------------------------------------------------------- /extras/tests/slowsoft/SlowSoftI2CMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/slowsoft/SlowSoftI2CMaster.h -------------------------------------------------------------------------------- /extras/tests/slowsoft/slowsoft.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/slowsoft/slowsoft.ino -------------------------------------------------------------------------------- /extras/tests/slowwire/slowwire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/slowwire/slowwire.ino -------------------------------------------------------------------------------- /extras/tests/softi2c/softi2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/softi2c/softi2c.ino -------------------------------------------------------------------------------- /extras/tests/softi2cpt/softi2cpt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/softi2cpt/softi2cpt.ino -------------------------------------------------------------------------------- /extras/tests/softwire/softwire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/softwire/softwire.ino -------------------------------------------------------------------------------- /extras/tests/tinywire/tinywire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/tinywire/tinywire.ino -------------------------------------------------------------------------------- /extras/tests/usiwire/usiwire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/usiwire/usiwire.ino -------------------------------------------------------------------------------- /extras/tests/wire/wire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/extras/tests/wire/wire.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/library.properties -------------------------------------------------------------------------------- /src/SoftI2CMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/src/SoftI2CMaster.h -------------------------------------------------------------------------------- /src/SoftWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felias-fogg/SoftI2CMaster/HEAD/src/SoftWire.h --------------------------------------------------------------------------------