MAX31855 Thermocouple Module Temperature Sensor (K-Type)

  • Fast Shipping

    Receive products in amazing time
  • Easy Returns

    Return policy that lets you shop at ease
  • Always Authentic

    We only sell 100% authentic products
  • Secure Shopping

    Your data is always protected

Rp56.550 Rp58.000

Sedang Kosong atau Habis

SKU: RK14-CC02 Category: Tag:

Description

🔧 Deskripsi Produk: MAX31855 Thermocouple Module Temperature Sensor (K-Type)

MAX31855 adalah modul konverter termokopel-to-digital berbasis SPI yang digunakan untuk membaca suhu dari thermocouple tipe-K secara akurat. Modul ini cocok untuk pengukuran suhu ekstrem pada sistem industri, kontrol suhu mesin, printer 3D, oven, dan berbagai aplikasi lain yang memerlukan pengukuran suhu tinggi.


⚙️ Spesifikasi Teknis:

  • IC utama: MAX31855K (buatan Maxim Integrated)

  • Tipe Thermocouple: Type-K

  • Range Pembacaan Suhu Thermocouple: -200°C hingga +1350°C

  • Range Suhu Internal (Cold Junction): -20°C hingga +85°C

  • Resolusi Pembacaan: 0.25°C

  • Akurasi: ±2°C untuk rentang suhu -200°C hingga +700°C

  • Komunikasi: SPI (Serial Peripheral Interface)

  • Tegangan Kerja: 3.0V – 3.6V (umumnya digunakan dengan regulator 3.3V)

  • Keluaran Data: 14-bit data suhu + 2-bit flag error

  • Proteksi Cold-Junction Compensation: Internal (di dalam IC)


Fitur Utama:

  • Kompatibel dengan Arduino, ESP32, Raspberry Pi, dan mikrokontroler lainnya.

  • Cold Junction Compensation: Menyesuaikan pengukuran suhu sesuai suhu sambungan dingin untuk akurasi tinggi.

  • Deteksi error: seperti koneksi terbuka, short ke GND atau ke VCC pada termokopel.

  • Cocok untuk aplikasi suhu tinggi seperti oven, forge, kiln, dan proses manufaktur.


📦 Isi Modul:

  • 1x MAX31855 Module (biasanya dilengkapi konektor terminal)

  • 1x Thermocouple K-Type (tergantung penjual)


🔌 Pinout Modul:

Pin Fungsi
VCC Tegangan input 3.3V
GND Ground
SCK Clock SPI
CS Chip Select (SPI)
SO Serial Out (Data SPI)

🧪 Contoh Penggunaan:

cpp
#include <SPI.h>
#include "Adafruit_MAX31855.h"
int thermoDO = 3;
int thermoCS = 4;
int thermoCLK = 5;Adafruit_MAX31855 thermocouple(thermoCLK, thermoCS, thermoDO);void setup() {
Serial.begin(9600);
delay(500);
}void loop() {
double temp = thermocouple.readCelsius();
Serial.print(“Suhu: “);
Serial.print(temp);
Serial.println(” °C”);
delay(1000);
}


📘 Catatan:

  • Modul ini tidak kompatibel langsung dengan 5V logic level — gunakan logic level shifter bila menggunakan mikrokontroler 5V seperti Arduino UNO.

  • Pastikan kabel thermocouple terpasang dengan polaritas yang benar (merah = -, kuning = + untuk standar ANSI).