diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8074797 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +# Author: diplfranzhoepfinger +# reference: https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html +# URL: https://github.com/milesburton/Arduino-Temperature-Control-Library +# DATE: 15.02.2023 + +idf_component_register( + SRCS "DallasTemperature.cpp" + INCLUDE_DIRS "." + PRIV_REQUIRES OneWire arduino + )