i try to measure the thermocouple type K's voltage using op-amp, but it seems like it doesn't measure the right voltage according to the temperature.
So i need to measure it from arduino uno and i dont know how to do that.
Could someone kindly explain to me how to program it so i could show it using a serial monitor?
btw, currently i am using Max6675 modul to convert the voltage to temperature reading.
i am currently using max6675. i mean how could i measure the ADC voltage from thermocouple to the chip using arduino? i need this voltage to compare the voltage with the temperature reading
yes sir, i am currently using max6675. i mean how could i measure the ADC voltage from thermocouple to chip using arduino? i need this voltage to compare with the temperature reading
The output from a thermocouple is very small, in the low milliVolt range (< 1 mV) at room temperature, also your meter probes will cause an error that may be larger then the TC output, depending on room temp.
how could i measure the ADC voltage from thermocouple to chip using arduino?
You measure the output voltage of the thermocouple amplifier using the analogRead() command.
You will need to calibrate the value to compute the actual voltage or the temperature, by comparing to the reading obtained using a good quality multimeter or thermometer.
outsider:
The output from a thermocouple is very small, in the low milliVolt range (< 1 mV) at room temperature, also your meter probes will cause an error that may be larger then the TC output, depending on room temp. Omega Engineering | Sensing, Monitoring and Control Solutions
yes i already have that conversion. so when i use a voltmeter it can't read the voltage and i tried using op-amp but it seems the result is not the same as the conversion before. i also already measured the voltage using arduino but the range in volt so it can't quite measured the voltage like i want in mV.
could you please tell me how to measure it using arduino in mV?
jremington:
You measure the output voltage of the thermocouple amplifier using the analogRead() command.
You will need to calibrate the value to compute the actual voltage or the temperature, by comparing to the reading obtained using a good quality multimeter or thermometer.
wow thank you sir. so i already measured the voltage using arduino with the analogRead() command and it is in V. could you tell me how to measured it in mV?