NTC_Thermistor icon indicating copy to clipboard operation
NTC_Thermistor copied to clipboard

[For Arduino and STM32] Library for working with a NTC thermistor.

Results 3 NTC_Thermistor issues
Sort by recently updated
recently updated
newest added

you use delay(); and sleep(); func`s. Dont do it. It is bad idea. Use millis() function or library based on internal timer.

My declaration; ``` #define SENSOR_PIN NTC_PIN #define REFERENCE_RESISTANCE 8000 #define NOMINAL_RESISTANCE 100000 #define NOMINAL_TEMPERATURE 25 #define B_VALUE 3950 #define ESP32_ANALOG_RESOLUTION 4095 // Global outside temperature reading double outsidetemp; Thermistor *thermistor;...

I had some problems to use your library with PJON and some buttons. Mostly if it use large READINGS_NUMBER. So, it is a implementation of timed buffer to store analog...