There are lots of Arduino projects to read temperature with different devices, this is an easy one to measure high temperatures with type K thermocouples (1300ºC).
Skills necessary for this project are basic (buying max IC already mounted) but I have mount an MAX31855 in a printed circuit (thanks to Antonio an specialist in this).
With this hand held instrument, is possible to have an accurate temperature reading and also display cold junction temp (ambient temp) in Celsius an Fahrenheit units by pressing a switch. That is not all, if you connect the Arduino board to a computer or recorder its possible to record CJ, TC and binary fault codes.
Step 1: Wiring

Step 2: Indication
This two images shows display indication
Step 3: Sketch
Arduino sketch.
In order to get MAX31855 library:
https://github.com/adafruit/Adafruit-MAX31855-libr…
Only is necessary change Arduino pins selection.
For LCD display remember is included in Arduino IDE, only is necessary change pin selection.
// Este proyecto se realizo en enero de 2014 para hacer una demo de la operatividad
// del integrado MAX31855, que integro en circuito impreso mi curso Antonio
// las pruebas son un éxito y se añadión un display LCD, tambien hay cambios en la
// salida por puerto serie para monitorizar y registrar la indicación.
// Las siguientes etapas tratan de realizar multiples medidas de termopar y además realizar
// La comunicación a través de una conexión de red TCP-IP
// Incluye el código de la librería:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);
// Adruino 1.0 pre-defines these variables
#include <MAX31855.h>
#if ARDUINO < 100
int SCK = 13;
int MISO = 12;
int SS = 10;
#endif
// Declaración de las variables enteras
int LED = 9;
int buttonPin = 8;
int buttonState = 0;
// Declaración de las variables de usadas con el MAX
double tempTC, tempCJC;
bool faultOpen, faultShortGND, faultShortVCC, x;
bool temp_unit = 0; // 0 = Celsius, 1 = Fahrenheit
// Init the MAX31855 library for the chip.
MAX31855 temp(SCK, SS, MISO);
Read more: Arduino Type K Temperature Indicator