K-Type 써모커플 온도센서 및 MAX6675 앰프 -800도

(K-type Thermocouple Temperature Sensor With MAX6675 Ampilifer)

IMG_0242

 

개요

  • 본 제품은 K-Type 써모커플과 MAX6675 써모커플 앰프가 포함된 제품입니다.
  • 0도에서 800도까지 측정이 가능한 제품으로 일반적인 온도 센서로 측정이 불가능한 고온이 측정 가능합니다.
  • 써모커플 앰프의 출력은 12비트 분해능(0.25도)의 read-only 포맷으로 SPI 인터페이스입니다.

특징

  • Direct Digital Conversion of Type -K Thermocouple Output
  • Cold-Junction Compensation
  • Simple SPI-Compatible Serial Interface
  • 12-Bit, 0.25°C Resolution
  • Open Thermocouple Detection
  • shipping list
    • K-Type Thermocouple x 1
    • MAX6675 x 1

문서

  • MAX6675
  • 써모커플과 앰프를 연결한 후 MAX6675 모듈의 핀을 아두이노와 아래와 같이 연결합니다.
  • VCC - 5V, Gnd - Gnd, SO - 핀8, CS - 핀 9, SCK - 핀 10
  • 다음 링크에서 아두이노 라이브러리를 다운로드하여 설치합니다.
  • 아래의 코드를 아두이노에 업로드합니다.
  • #include "Max6675.h"
     
    Max6675 ts(8, 9, 10);
    // Max6675 module: SO on pin #8, SS on pin #9, CSK on pin #10 of Arduino UNO
    // Other pins are capable to run this library, as long as digitalRead works on SO,
    // and digitalWrite works on SS and CSK
     
    void setup()
    {
    ts.setOffset(0);
    // set offset for temperature measurement.
    // 1 stannds for 0.25 Celsius
     
    Serial.begin(9600);
    }
     
    void loop()
    {
    Serial.print(ts.getCelsius(), 2);
    Serial.print(" C / ");
    Serial.print(ts.getFahrenheit(), 2);
    Serial.print(" F / ");
    Serial.print(ts.getKelvin(), 2);
    Serial.print(" Kn");
    delay(2000);
    }
    
  • 써모커플을 이용하여 온도를 측정하면 아래와 같은 결과를 확인할 수 있습니다.

연관제품