MAX31855热电偶故障

时间:2013-10-17 20:07:03

标签: arduino

我从adafruit运行MAX31855热电偶示例中得到了示例。     但我得到的结果如下。它在我的代码或设置设备时遇到问题..

请帮忙!我试了很长时间去谷歌但是找不到结果

Internal Temp = 0.00
C = 0.00
F = 32.00
Internal Temp = 0.00
C = 0.00
F = 32.00
Internal Temp = 0.00
C = 0.00
F = 32.00
Internal Temp = 0.00
C = 0.00
F = 32.00

Here is the code

/*************************************************** 
  This is an example for the Adafruit Thermocouple Sensor w/MAX31855K

  Designed specifically to work with the Adafruit Thermocouple Sensor
  ----> https://www.adafruit.com/products/269

  These displays use SPI to communicate, 3 pins are required to  
  interface
  Adafruit invests time and resources providing this open source code, 
  please support Adafruit and open-source hardware by purchasing 
  products from Adafruit!

  Written by Limor Fried/Ladyada for Adafruit Industries.  
  BSD license, all text above must be included in any redistribution
 ****************************************************/

    #include <Adafruit_MAX31855.h>

    int thermoDO = 3;
    int thermoCS = 4;
    int thermoCLK = 5;

    Adafruit_MAX31855 thermocouple(thermoCLK, thermoCS, thermoDO);

    void setup() {
      Serial.begin(9600);

      Serial.println("MAX31855 test");
      // wait for MAX chip to stabilize
      delay(500);
    }

    void loop() {
      // basic readout test, just print the current temp
       Serial.print("Internal Temp = ");
       Serial.println(thermocouple.readInternal());

       double c = thermocouple.readCelsius();
       if (isnan(c)) {
         Serial.println("Something wrong with thermocouple!");
       } else {
         Serial.print("C = "); 
         Serial.println(c);
       }
       Serial.print("F = ");
       Serial.println(thermocouple.readFarenheit());



delay(1000);
}

1 个答案:

答案 0 :(得分:0)

只是一些想法,显然它是冻结在你的房间,但热电偶确实返回0C和32F之间的正确关系,而你没有任何数据转换。

那么,热电偶是否有物理参考点或连接点,必须与热电偶设备本身连接?

文档是否说当某种类型的错误时它总是返回0C / 32F?

最后,您的SPI引脚是否正确?请记住,Arduino for SPI上有特定的引脚,你使用这些引脚吗?