diff --git a/README.md b/README.md index 8338e6b..8dcbd9a 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/examples/AverageMeasurement/AverageMeasurement.ino b/examples/AverageMeasurement/AverageMeasurement.ino index f8ebaee..a35ce4b 100644 --- a/examples/AverageMeasurement/AverageMeasurement.ino +++ b/examples/AverageMeasurement/AverageMeasurement.ino @@ -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. diff --git a/examples/ESP32/ESP32.c b/examples/ESP32/ESP32.c index 7283c1c..4148473 100644 --- a/examples/ESP32/ESP32.c +++ b/examples/ESP32/ESP32.c @@ -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. diff --git a/examples/STM32/STM32.ino b/examples/STM32/STM32.ino index 3749235..d126370 100644 --- a/examples/STM32/STM32.ino +++ b/examples/STM32/STM32.ino @@ -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. diff --git a/examples/SerialReading/SerialReading.ino b/examples/SerialReading/SerialReading.ino index 5f353e1..22c0467 100644 --- a/examples/SerialReading/SerialReading.ino +++ b/examples/SerialReading/SerialReading.ino @@ -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. diff --git a/examples/SmoothMeasurement/SmoothMeasurement.ino b/examples/SmoothMeasurement/SmoothMeasurement.ino index e0ddc4f..1bf1842 100644 --- a/examples/SmoothMeasurement/SmoothMeasurement.ino +++ b/examples/SmoothMeasurement/SmoothMeasurement.ino @@ -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. diff --git a/library.properties b/library.properties index 54a4c62..38b7ac3 100644 --- a/library.properties +++ b/library.properties @@ -5,5 +5,5 @@ maintainer=Yurii Salimov 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=* diff --git a/src/AverageThermistor.h b/src/AverageThermistor.h index b609e21..98414f8 100644 --- a/src/AverageThermistor.h +++ b/src/AverageThermistor.h @@ -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. diff --git a/src/NTC_Thermistor.h b/src/NTC_Thermistor.h index 9ed07e7..9d0a026 100644 --- a/src/NTC_Thermistor.h +++ b/src/NTC_Thermistor.h @@ -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. diff --git a/src/SmoothThermistor.h b/src/SmoothThermistor.h index b699ec9..a7be2be 100644 --- a/src/SmoothThermistor.h +++ b/src/SmoothThermistor.h @@ -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. diff --git a/src/Thermistor.h b/src/Thermistor.h index 97a0787..b9ab481 100644 --- a/src/Thermistor.h +++ b/src/Thermistor.h @@ -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.