NTC 热敏电阻阻值测试
待测热敏电阻 A
ntc 热敏电阻常温 (约29度)
上 84.5k欧
下 84.2k欧
标称阻值:100k kΩ @25℃;公差精度: + / -1%
B值 :3950K@25/50℃;B值精度:+ / – 1%
待测热敏电阻 B
我自己的 8.24k欧
标称阻值:10k kΩ @25℃;公差精度: + / -1%
B值 :3950K@25/50℃;B值精度:+ / – 1%
NTC 10K±1% B值3950 RT表(NTC温度/阻值参数对照表)- 敏创电子 (mcnic.com)
参考代码
下列的参考代码使用了thermistor
的库,库文件可以从下述链接进行下载;若使用百度网盘,可以在文件夹中查找名为thermistor-master.zip
的压缩包。
#include "thermistor.h"
#include "HardwareSerial.h"
// 使用模拟引脚A0读取数值
#define NTC_PIN A0
// Thermistor object
THERMISTOR thermistor(NTC_PIN, // 模拟引脚 A0
10000, // 25 ºC 时电阻阻值
3950, // 热敏电阻 beta 系数
10000); // 分压电阻
// Global temperature reading
uint16_t temp;
void setup()
{
Serial.begin(9600);
}
void loop()
{
temp = thermistor.read(); // Read temperature
Serial.println(temp);
delay(5000);
}