├── .github └── workflows │ └── action.yml ├── .gitignore ├── LICENSE ├── README.md ├── SConscript ├── docs ├── i2c.gif └── sw_i2c.gif └── src ├── SoftwareI2C.cpp ├── SoftwareI2C.h ├── i2c_tools.cpp ├── i2c_utils.cpp └── i2c_utils.h /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/README.md -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/SConscript -------------------------------------------------------------------------------- /docs/i2c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/docs/i2c.gif -------------------------------------------------------------------------------- /docs/sw_i2c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/docs/sw_i2c.gif -------------------------------------------------------------------------------- /src/SoftwareI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/src/SoftwareI2C.cpp -------------------------------------------------------------------------------- /src/SoftwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/src/SoftwareI2C.h -------------------------------------------------------------------------------- /src/i2c_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/src/i2c_tools.cpp -------------------------------------------------------------------------------- /src/i2c_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/src/i2c_utils.cpp -------------------------------------------------------------------------------- /src/i2c_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/rt-i2c-tools/HEAD/src/i2c_utils.h --------------------------------------------------------------------------------