├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── advancedExample │ └── advancedExample.ino ├── basicExample │ └── basicExample.ino └── externalADC │ └── externalADC.ino ├── library.properties ├── src ├── Conditionals.h ├── Configuration.h ├── Thermistortables.h ├── tables │ ├── Conditionals.h │ ├── Thermistortables.h │ ├── thermistornames.h │ ├── thermistortable_1.h │ ├── thermistortable_10.h │ ├── thermistortable_1010.h │ ├── thermistortable_1047.h │ ├── thermistortable_11.h │ ├── thermistortable_110.h │ ├── thermistortable_12.h │ ├── thermistortable_13.h │ ├── thermistortable_147.h │ ├── thermistortable_148.h │ ├── thermistortable_2.h │ ├── thermistortable_20.h │ ├── thermistortable_3.h │ ├── thermistortable_4.h │ ├── thermistortable_5.h │ ├── thermistortable_51.h │ ├── thermistortable_52.h │ ├── thermistortable_55.h │ ├── thermistortable_6.h │ ├── thermistortable_60.h │ ├── thermistortable_66.h │ ├── thermistortable_7.h │ ├── thermistortable_70.h │ ├── thermistortable_71.h │ ├── thermistortable_75.h │ ├── thermistortable_8.h │ ├── thermistortable_80.h │ ├── thermistortable_9.h │ ├── thermistortable_998.h │ └── thermistortable_999.h ├── thermistor.cpp ├── thermistor.h ├── thermistornames.h ├── thermistortable_1.h ├── thermistortable_10.h ├── thermistortable_1010.h ├── thermistortable_1047.h ├── thermistortable_11.h ├── thermistortable_110.h ├── thermistortable_12.h ├── thermistortable_13.h ├── thermistortable_147.h ├── thermistortable_2.h ├── thermistortable_20.h ├── thermistortable_3.h ├── thermistortable_4.h ├── thermistortable_5.h ├── thermistortable_51.h ├── thermistortable_52.h ├── thermistortable_55.h ├── thermistortable_6.h ├── thermistortable_60.h ├── thermistortable_66.h ├── thermistortable_7.h ├── thermistortable_70.h ├── thermistortable_71.h ├── thermistortable_75.h ├── thermistortable_8.h ├── thermistortable_80.h ├── thermistortable_9.h ├── thermistortable_998.h └── thermistortable_999.h ├── thermistor.cpp └── thermistor.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/README.md -------------------------------------------------------------------------------- /examples/advancedExample/advancedExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/examples/advancedExample/advancedExample.ino -------------------------------------------------------------------------------- /examples/basicExample/basicExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/examples/basicExample/basicExample.ino -------------------------------------------------------------------------------- /examples/externalADC/externalADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/examples/externalADC/externalADC.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/library.properties -------------------------------------------------------------------------------- /src/Conditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/Conditionals.h -------------------------------------------------------------------------------- /src/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/Configuration.h -------------------------------------------------------------------------------- /src/Thermistortables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/Thermistortables.h -------------------------------------------------------------------------------- /src/tables/Conditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/Conditionals.h -------------------------------------------------------------------------------- /src/tables/Thermistortables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/Thermistortables.h -------------------------------------------------------------------------------- /src/tables/thermistornames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistornames.h -------------------------------------------------------------------------------- /src/tables/thermistortable_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_1.h -------------------------------------------------------------------------------- /src/tables/thermistortable_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_10.h -------------------------------------------------------------------------------- /src/tables/thermistortable_1010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_1010.h -------------------------------------------------------------------------------- /src/tables/thermistortable_1047.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_1047.h -------------------------------------------------------------------------------- /src/tables/thermistortable_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_11.h -------------------------------------------------------------------------------- /src/tables/thermistortable_110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_110.h -------------------------------------------------------------------------------- /src/tables/thermistortable_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_12.h -------------------------------------------------------------------------------- /src/tables/thermistortable_13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_13.h -------------------------------------------------------------------------------- /src/tables/thermistortable_147.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_147.h -------------------------------------------------------------------------------- /src/tables/thermistortable_148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_148.h -------------------------------------------------------------------------------- /src/tables/thermistortable_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_2.h -------------------------------------------------------------------------------- /src/tables/thermistortable_20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_20.h -------------------------------------------------------------------------------- /src/tables/thermistortable_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_3.h -------------------------------------------------------------------------------- /src/tables/thermistortable_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_4.h -------------------------------------------------------------------------------- /src/tables/thermistortable_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_5.h -------------------------------------------------------------------------------- /src/tables/thermistortable_51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_51.h -------------------------------------------------------------------------------- /src/tables/thermistortable_52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_52.h -------------------------------------------------------------------------------- /src/tables/thermistortable_55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_55.h -------------------------------------------------------------------------------- /src/tables/thermistortable_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_6.h -------------------------------------------------------------------------------- /src/tables/thermistortable_60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_60.h -------------------------------------------------------------------------------- /src/tables/thermistortable_66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_66.h -------------------------------------------------------------------------------- /src/tables/thermistortable_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_7.h -------------------------------------------------------------------------------- /src/tables/thermistortable_70.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_70.h -------------------------------------------------------------------------------- /src/tables/thermistortable_71.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_71.h -------------------------------------------------------------------------------- /src/tables/thermistortable_75.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_75.h -------------------------------------------------------------------------------- /src/tables/thermistortable_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_8.h -------------------------------------------------------------------------------- /src/tables/thermistortable_80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_80.h -------------------------------------------------------------------------------- /src/tables/thermistortable_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_9.h -------------------------------------------------------------------------------- /src/tables/thermistortable_998.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_998.h -------------------------------------------------------------------------------- /src/tables/thermistortable_999.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/tables/thermistortable_999.h -------------------------------------------------------------------------------- /src/thermistor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistor.cpp -------------------------------------------------------------------------------- /src/thermistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistor.h -------------------------------------------------------------------------------- /src/thermistornames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistornames.h -------------------------------------------------------------------------------- /src/thermistortable_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_1.h -------------------------------------------------------------------------------- /src/thermistortable_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_10.h -------------------------------------------------------------------------------- /src/thermistortable_1010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_1010.h -------------------------------------------------------------------------------- /src/thermistortable_1047.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_1047.h -------------------------------------------------------------------------------- /src/thermistortable_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_11.h -------------------------------------------------------------------------------- /src/thermistortable_110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_110.h -------------------------------------------------------------------------------- /src/thermistortable_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_12.h -------------------------------------------------------------------------------- /src/thermistortable_13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_13.h -------------------------------------------------------------------------------- /src/thermistortable_147.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_147.h -------------------------------------------------------------------------------- /src/thermistortable_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_2.h -------------------------------------------------------------------------------- /src/thermistortable_20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_20.h -------------------------------------------------------------------------------- /src/thermistortable_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_3.h -------------------------------------------------------------------------------- /src/thermistortable_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_4.h -------------------------------------------------------------------------------- /src/thermistortable_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_5.h -------------------------------------------------------------------------------- /src/thermistortable_51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_51.h -------------------------------------------------------------------------------- /src/thermistortable_52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_52.h -------------------------------------------------------------------------------- /src/thermistortable_55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_55.h -------------------------------------------------------------------------------- /src/thermistortable_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_6.h -------------------------------------------------------------------------------- /src/thermistortable_60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_60.h -------------------------------------------------------------------------------- /src/thermistortable_66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_66.h -------------------------------------------------------------------------------- /src/thermistortable_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_7.h -------------------------------------------------------------------------------- /src/thermistortable_70.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_70.h -------------------------------------------------------------------------------- /src/thermistortable_71.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_71.h -------------------------------------------------------------------------------- /src/thermistortable_75.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_75.h -------------------------------------------------------------------------------- /src/thermistortable_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_8.h -------------------------------------------------------------------------------- /src/thermistortable_80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_80.h -------------------------------------------------------------------------------- /src/thermistortable_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_9.h -------------------------------------------------------------------------------- /src/thermistortable_998.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_998.h -------------------------------------------------------------------------------- /src/thermistortable_999.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/src/thermistortable_999.h -------------------------------------------------------------------------------- /thermistor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/thermistor.cpp -------------------------------------------------------------------------------- /thermistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguel5612/ThermistorLibrary/HEAD/thermistor.h --------------------------------------------------------------------------------