Mengakses 3 Channel Suhu, LM35, DS1820 dan Thermocouple
Arduino UNO digunakan untuk membaca nilai temperatur dengan 3 sensor suhu jenis DS1820, LM35 dan Thermocouple . Hasil pembacaan ketiga sensor akan ditampilkan ke Serial Monitor. Kebutuhan Hardware Arduino UNO Board Modul sensor temperatur DS1820 Modul sensor LM35 Modul Sensor Thermocouple dan driver MAX6675 Power Supply +5 Vdc Sensor Thermocouple | Source Sensor DS1820 Waterproof | Source Sensor LM35 | Source Schematic Koneksi Arduino dengan Sensor DS1820 Koneksi Arduino dengan Driver Max6675 Koneksi Arduino dengan Sensor LM35 Source Code/Sketch #include <OneWire.h> #include <Wire.h> #include "max6675.h" OneWire ds(11); // on pin 11 --DS1820 int thermoDO = 8; int thermoCS = 9; int thermoCLK = 10; unsigned int adc,tempDS,tempLM,tempTC; MAX6675 thermocouple(thermoCLK, thermoCS, thermoDO); //============================================ void setup(void) { Serial.begin(9600); Serial.pr