├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── components ├── bme680 │ ├── bme680.c │ ├── bme680.h │ ├── bme680_platform.c │ ├── bme680_platform.h │ ├── bme680_types.h │ └── component.mk └── esp8266_wrapper │ ├── component.mk │ ├── esp8266_wrapper.c │ └── esp8266_wrapper.h └── main ├── bme680_example.c └── component.mk /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *# 3 | .#* 4 | *.swp 5 | *.o 6 | 7 | sdkconfig 8 | build 9 | 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/README.md -------------------------------------------------------------------------------- /components/bme680/bme680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/bme680/bme680.c -------------------------------------------------------------------------------- /components/bme680/bme680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/bme680/bme680.h -------------------------------------------------------------------------------- /components/bme680/bme680_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/bme680/bme680_platform.c -------------------------------------------------------------------------------- /components/bme680/bme680_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/bme680/bme680_platform.h -------------------------------------------------------------------------------- /components/bme680/bme680_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/bme680/bme680_types.h -------------------------------------------------------------------------------- /components/bme680/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Component makefile. 3 | # 4 | COMPONENT_ADD_INCLUDEDIRS := . 5 | -------------------------------------------------------------------------------- /components/esp8266_wrapper/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Component makefile. 3 | # 4 | COMPONENT_ADD_INCLUDEDIRS := . 5 | -------------------------------------------------------------------------------- /components/esp8266_wrapper/esp8266_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/esp8266_wrapper/esp8266_wrapper.c -------------------------------------------------------------------------------- /components/esp8266_wrapper/esp8266_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/components/esp8266_wrapper/esp8266_wrapper.h -------------------------------------------------------------------------------- /main/bme680_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/main/bme680_example.c -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschorcht/bme680-esp-idf/HEAD/main/component.mk --------------------------------------------------------------------------------