-
概述:
OJ热敏模块用于温度检测,环境温度检测,采用NTC 10K热敏电阻,灵敏度好,当温度升高,电阻值降低。直接读取模拟值,输出0~1023,配合Arduino的传感器扩展板用模拟口便可以读取模拟值。
-
模块参数:
尺寸:25*20mm
工作电压:5V
热敏电阻型号:MF52E
B值:3950K
输出:模拟输出
-
引脚定义:
S:输出
+:DC5V
—:GND地
-
参考程序:
/*OJ Thermistor module www.openjumper.cn */ void setup() { Serial.begin(9600); } void loop() { int sensorValue = analogRead(A0); Serial.println(sensorValue); delay(100); }
-
其他文档: