File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 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+ )
Original file line number Diff line number Diff line change 6161
6262
6363Additional 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
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments