热敏电阻
来自Labplus盛思维基百科
概述
基于随着温度变化热敏电阻呈指数关系,测量环境的温度变化。
技术参数
- 工作电压:VCC 3.3-5V
- 温度范围-10~100℃
- 模块尺寸:24x46x7.5mm
引脚定义
VCC | 电源 |
NC | 空脚 |
AO | 输出温度模拟量 |
GND | 地 |
使用教程
连接示意图
Arduino示例
MicroPython示例
from microbit import * import math display.off() def getNTC(pin): return 1/(math.log(1023/pin.read_analog() - 1)/3955 + 1/298) - 273 #将采样的温度模拟量转化为摄氏度 while True: print('NTC:',getNTC(pin2)) sleep(1000)