arduino - 如何使用带有 PT100 RTD 传感器的 arduino uno 板读取温度?

标签 arduino arduino-uno temperature rtd

我是 arduino 编程新手。而且几乎没有经验。

我希望对我的 arduino Uno 板进行编程,以读取 PT100 RTD 传感器的 2/3/4 线配置(精度水平至少为 0.5°C)。温度范围为0至400°C和-50至100°C。

由于我对这个领域完全陌生,因此我希望获得包含电路、图像和代码的相当描述性的信息。

我对这个主题进行了很多研究,但找不到任何有用或实质性的东西来解决我的问题。

此外,我无法使用热敏电阻或任何 IC 来读取温度,因为安装 RTD 的机器具有 PID,但我想创建一个可以在计算机本身上获取温度的数据记录器。

最佳答案

PT100 的电阻随着加热而增加。 pt100 resistance table 中描述了温度与电阻特性。

Arduino 可以读取模拟输入上的电压。要获得摄氏度读数,我们必须:

  1. 将模拟输入读取为电压
  2. 计算电阻值(分压器)
  3. 根据电阻从表格中查找摄氏度

voltage divider

Vin 是来自 arduino 的 5 伏电压,R1 是我程序中已知值的电阻,实际上是 220 欧姆,R2 是 pt 100 Vout 必须连接到 arduino 模拟输入引脚(例如 A0)

R2 = R1 * 1/(Vin/Vout - 1)

电路可以根据上图来完成,相当简单。

我写的草图包含0C - 80C的电阻数据(可以轻松扩展) 为了从电阻值获取度数,我使用 MultiMap 函数的我的版本,该函数使用一个 float 组作为电阻值,并使用线性插值来计算精确度数

float in[] = { 100.00, 100.39, 100.78, 101.17, 101.56, 101.95, 102.34, 102.73, 103.12, 103.51,
               103.90, 104.29, 104.68, 105.07, 105.46, 105.85, 106.24, 106.63, 107.02, 107.40,
               107.79, 108.18, 108.57, 108.96, 109.35, 109.73, 110.12, 110.51, 110.90, 111.29,
               111.67, 112.06, 112.45, 112.83, 113.22, 113.61, 114.00, 114.38, 114.77, 115.15,
               115.54, 115.93, 116.31, 116.70, 117.08, 117.47, 117.86, 118.24, 118.63, 119.01,
               119.40, 119.78, 120.17, 120.55, 120.94, 121.32, 121.71, 122.09, 122.47, 122.86,
               123.24, 123.63, 124.01, 124.39, 124.78, 125.16, 125.54, 125.93, 126.31, 126.69,
               127.08, 127.46, 127.84, 128.22, 128.61, 128.99, 129.37, 129.75, 130.13, 130.52 };

// known resistance in voltage divider
int R1 = 217;

float MultiMap(float val, float* _in, uint8_t size)
{
  // calculate if value is out of range 
  if (val < _in[0] ) return -99.99;
  if (val > _in[size-1] ) return 99.99;

  //  search for 'value' in _in array to get the position No.
  uint8_t pos = 0;
  while(val > _in[pos]) pos++;  

  // handles the 'rare' equality case
  if (val == _in[pos]) return pos;

  float r1 = _in[pos-1];
  float r2 = _in[pos];
  int c1 = pos-1;
  int c2 = pos;

 return c1 + (val - r1) / (r2-r1) * (c2-c1);
}

void setup() {
  // put your setup code here, to run once:
Serial.begin(9600);

}
void loop() {
  // put your main code here, to run repeatedly:
   int pt100 = analogRead(A0);


   float Vout = pt100 * (5.0 / 1023.0);
   float R2 = R1 * 1/(5.0/Vout - 1);

float c =  MultiMap(R2,in,80);

Serial.print("Resistance: ");
Serial.print(R2);
Serial.println(" Ohm");

Serial.print("Temperature: ");
Serial.print(c);
Serial.println(" C");


delay(400);
}

关于arduino - 如何使用带有 PT100 RTD 传感器的 arduino uno 板读取温度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30012866/

相关文章:

iphone - 使用 iPhone 串行连接(引脚 12 和 13)

c++ - 无法将ESP8266连接到Arduino IDE

http - ESP8266 GET 请求不工作

c# - 获取主板传感器数据

c - 使用 Arduino 提高精度( float )

c - 导致崩溃的基本字符串比较

arduino - 如何使用 Nest 设置当前温度

c++ - 为什么我在 C++ 映射类成员中的值被删除?

c++ - 伺服电机一直试图达到 134° 以下,这是怎么回事?

android - Galaxy s3 有温度传感器吗?