├── .gitignore ├── CMakeLists.txt ├── Kconfig ├── Kconfig.projbuild ├── LICENSE ├── Makefile.projbuild ├── README.md ├── component.mk ├── examples ├── Makefile ├── main │ ├── component.mk │ └── main.cpp └── sdkconfig.defaults ├── include └── I2Cbus.hpp └── src └── I2Cbus.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/Kconfig -------------------------------------------------------------------------------- /Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/Kconfig.projbuild -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.projbuild: -------------------------------------------------------------------------------- 1 | # 2 | # Top-level component makefile 3 | # 4 | 5 | CPPFLAGS += -DI2CBUS_COMPONENT_TRUE=1 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/README.md -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Main component makefile. 3 | # 4 | 5 | COMPONENT_SRCDIRS := src . 6 | -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/main/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Main component makefile. 3 | # 4 | -------------------------------------------------------------------------------- /examples/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/examples/main/main.cpp -------------------------------------------------------------------------------- /examples/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/examples/sdkconfig.defaults -------------------------------------------------------------------------------- /include/I2Cbus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/include/I2Cbus.hpp -------------------------------------------------------------------------------- /src/I2Cbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanaeljr/esp32-I2Cbus/HEAD/src/I2Cbus.cpp --------------------------------------------------------------------------------