├── README.md ├── SoftwareI2C.cpp ├── SoftwareI2C.h ├── examples ├── SoftwareI2C_Interactive │ ├── SerialCommands.h │ └── SoftwareI2C_Interactive.ino ├── SoftwareI2C_Scan │ └── SoftwareI2C_Scan.ino └── findI2C_PinsAndDevices │ └── findI2C_PinsAndDevices.ino ├── i2c_device_list.h ├── keywords.txt └── library.properties /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/README.md -------------------------------------------------------------------------------- /SoftwareI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/SoftwareI2C.cpp -------------------------------------------------------------------------------- /SoftwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/SoftwareI2C.h -------------------------------------------------------------------------------- /examples/SoftwareI2C_Interactive/SerialCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/examples/SoftwareI2C_Interactive/SerialCommands.h -------------------------------------------------------------------------------- /examples/SoftwareI2C_Interactive/SoftwareI2C_Interactive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/examples/SoftwareI2C_Interactive/SoftwareI2C_Interactive.ino -------------------------------------------------------------------------------- /examples/SoftwareI2C_Scan/SoftwareI2C_Scan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/examples/SoftwareI2C_Scan/SoftwareI2C_Scan.ino -------------------------------------------------------------------------------- /examples/findI2C_PinsAndDevices/findI2C_PinsAndDevices.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/examples/findI2C_PinsAndDevices/findI2C_PinsAndDevices.ino -------------------------------------------------------------------------------- /i2c_device_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/i2c_device_list.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micooke/SoftwareI2C/HEAD/library.properties --------------------------------------------------------------------------------