Skip to content

Commit f2dbcd4

Browse files
authored
Merge branch 'milesburton:master' into master
2 parents 736882b + e3c7276 commit f2dbcd4

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Author: diplfranzhoepfinger
2+
# reference: https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html
3+
# URL: https://github.com/milesburton/Arduino-Temperature-Control-Library
4+
# DATE: 15.02.2023
5+
6+
idf_component_register(
7+
SRCS "DallasTemperature.cpp"
8+
INCLUDE_DIRS "."
9+
PRIV_REQUIRES OneWire arduino
10+
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Rob Tillaart [[email protected]] added async modus (v3.7.0)
6161

6262

6363
Additional documentation may be found here
64-
https://www.milesburton.com/Dallas_Temperature_Control_Library
64+
https://www.milesburton.com/w/index.php/Dallas_Temperature_Control_Library
6565

6666
# License
6767

examples/Single/Single.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void setup(void)
3535
if (sensors.isParasitePowerMode()) Serial.println("ON");
3636
else Serial.println("OFF");
3737

38-
// Assign address manually. The addresses below will beed to be changed
38+
// Assign address manually. The addresses below will need to be changed
3939
// to valid device addresses on your bus. Device address can be retrieved
4040
// by using either oneWire.search(deviceAddress) or individually via
4141
// sensors.getAddress(deviceAddress, index)

0 commit comments

Comments
 (0)