Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Provides a temperature reading in Celsius, Fahrenheit and Kelvin.

## Installation

1. [Download](https://github.com/bobwolff68/NTC_Thermistor/releases) the Latest release from gitHub.
1. [Download](https://github.com/suoapvs/NTC_Thermistor/releases) the Latest release from gitHub.
2. Unzip and modify the Folder name to "NTC_Thermistor" (Remove the '-version')
3. Paste the modified folder on your Library folder (On your `libraries` folder inside Sketchbooks or Arduino software).
4. Restart the Arduino IDE.
Expand Down
2 changes: 1 addition & 1 deletion examples/AverageMeasurement/AverageMeasurement.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Reads a temperature from the NTC 3950 thermistor,
averages and displays it in the default Serial.

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion examples/ESP32/ESP32.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

ESP32 devices are 12-bit ADC devices so the defuault is 4095 here.

https://github.com/bobwolff68/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Bob Wolff from Yuri's original - 2024
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion examples/STM32/STM32.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
Where,
ANALOG_RESOLUTION - board ADC resolution (default, 1023).

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion examples/SerialReading/SerialReading.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Reads a temperature from the NTC 3950 thermistor
and displays it in the default Serial.

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion examples/SmoothMeasurement/SmoothMeasurement.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Reads a temperature from the NTC 3950 thermistor,
smooth and displays it in the default Serial.

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainer=Yurii Salimov <[email protected]>
sentence=The Library implements a set of methods for working with a NTC thermistor.
paragraph=Provides a temperature reading in Celsius, Fahrenheit and Kelvin.
category=Sensors
url=https://github.com/bobwolff68/NTC_Thermistor
url=https://github.com/suoapvs/NTC_Thermistor
architectures=*
2 changes: 1 addition & 1 deletion src/AverageThermistor.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
v.2.0.3
- replaced "define" constants with "static const"

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion src/NTC_Thermistor.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
- optimized constructor;
- updated documentation.

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, February, 2018.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion src/SmoothThermistor.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
v.2.0.3
- replaced "define" constants with "static const"

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down
2 changes: 1 addition & 1 deletion src/Thermistor.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
v.2.0.3
- added virtual destructor

https://github.com/YuriiSalimov/NTC_Thermistor
https://github.com/suoapvs/NTC_Thermistor

Created by Yurii Salimov, May, 2019.
Released into the public domain.
Expand Down