Thermo J Click-Platine
Thermo J Click-Platine
Das Thermo J Click Board™ ist ein Click Board™ zur Temperaturmessung, das eine Thermoelementsonde Typ J verwendet, die an einen integrierten PPC-SMP-J-Anschluss angeschlossen ist. Der aktive Teil des Thermo J Click Board™ ist der MCP9600 von Microchip – ein Thermoelement-EMF-Temperaturkonverter mit maximaler Genauigkeit von 1,5 °C. Der integrierte PCC-SMP-J-Anschluss gewährleistet die sichere Verbindung und genaue Messwerte für das angeschlossene Thermoelement.
Der Hauptvorteil der Thermoelemente gegenüber anderen Arten von Temperaturmessgeräten ist der große Temperaturbereich, den sie messen können. Mit vier zusätzlichen programmierbaren ALERT-Leitungen, die an die MikroBUS-Pins weitergeleitet werden, ist das Thermo J Click Board™ eine ideale Lösung für Temperaturmessungen unter extremen Bedingungen, an schwer zugänglichen Stellen, in Maschinen und ähnlichen Anwendungen.
The Thermo J Click Board™ is a temperature measurement Click Board™, which uses a thermocouple type-J probe, connected to a PPC-SMP-J on-board connector. The active part of the Thermo J Click Board™ is MCP9600 by Microchip - a thermocouple EMF to temperature converter, with 1.5°C of maximum accuracy. The on-board PCC-SMP-J connector ensures the secure connection and accurate readings for the connected thermocouple.
The main advantage of the thermocouples over some other types of temperature measuring devices is a wide range of temperatures that they can measure. With the addition of four programmable ALERT lines routed to the mikroBUS pins, the Thermo J Click Board™ is an ideal solution for the temperature measurements in extreme conditions, hard to reach places, machinery, and similar applications.
How Does The Thermo J Click Board™ Work?
The Thermo J Click Board™ utilises a thermoelectric principle for measuring the temperature. When the thermocouple joint, made of two different conductive materials, is exposed to a measuring temperature (hot end), a potential difference will be generated at the open ends of the circuit (cold end). The generated electromotive force (EMF) at the open ends of the circuit can be measured and converted into a digital form, by the 18-bit delta-sigma AD converter section of the MCP9600 IC.
To obtain the desired measurement of the temperature, the cold end temperature needs to be known, too. Since the MCP9600 features an integrated measurement of the ambient temperature (cold junction compensation), error corrected value can be read directly from the registers, using the I2C bus protocol.
The generated EMF depends on the materials that are used for the thermocouples.Those materials are standardised and categorised by types. This Click Board™ uses the type-J thermocouples, composed of iron and constantan. The measuring range of this device for the type J probes, is from -150°C to 1200°C, but it depends on the used probes. The Thermo J Click Board™ uses a specially constructed PPC-SMP-J on-board connector for easy and secure thermocouple connection.
There are four ALERT lines present on the MCP9600. Those lines can be programmed by the I2C to be set to a HIGH logic level when certain temperature thresholds are reached. The lines are routed to the AN, RST, PWM and INT pins of the mikroBUS.
The I2C address can be selected with the ADDR SEL on-board SMD jumper. The I2C address can be changed by this jumper, allowing for more than one of these Click Board™s to be used on a system, each with the different I2C address.
The Thermo J Click Board™ can be set to work with both 3.3V or 5V, selectable from the mikroBUS. This can be done by the on-board SMD jumper, labelled as PWR SEL. This allows for this Click Board™ to be used on a wide range of different MCUs, both 3.3V and 5V tolerant.
Note: The Thermo J Click Board™ needs Thermocouple Type-J probes which are sold separately.
Software Support
We provide a library for the Thermo J Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
The library contains functions which are used to communicate and control the Thermo J Click Board™. Temperature read and write functions require the I2C slave address as an argument - so that more than one device with the different slave addresses can be used on the same I2C bus.
Key Functions
float THERMOJ_getTemperature(uint8_t slaveAddress)
- Returns current temperature in Celsius
void THERMOJ_write_byte(uint8_t slaveAddress, uint8_t registerAddress, uint8_t value)
- Writes single byte to any register
uint8_t THERMOJ_read_byte(uint8_t slaveAddress, uint8_t registerAddress)
- Reads single byte from any register
Example Description
The application is composed of three sections:
- System Initialization - Initializes pins, I2C peripheral, UART used for logging
- Application Initialization -Initializes driver and configures module
- Application Task - (code snippet) Sequential temperature measurement every 500 milliseconds. Measurement readings will be logged to UART
The full application code, and ready to use projects can be found on our LibStock page.
void applicationTask() { temperature = THERMOJ_getTemperature(_THERMOJ_ADDRESS_GND); FloatToStr(temperature,text); LOG_write("Current temperature: ", _LOG_TEXT); LOG_write(text, _LOG_LINE); Delay_ms(500); }
Other MikroElektronika libraries used in the example:
- UART
- Conversions
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 click or RS232 click to connect your PC for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice can be used to read the message.
Software Support
We provide a library for the Thermo J Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
The library contains functions which are used to communicate and control the Thermo J Click Board™. Temperature read and write functions require the I2C slave address as an argument - so that more than one device with the different slave addresses can be used on the same I2C bus.
Key Functions
float THERMOJ_getTemperature(uint8_t slaveAddress)
- Returns current temperature in Celsius
void THERMOJ_write_byte(uint8_t slaveAddress, uint8_t registerAddress, uint8_t value)
- Writes single byte to any register
uint8_t THERMOJ_read_byte(uint8_t slaveAddress, uint8_t registerAddress)
- Reads single byte from any register
Example Description
The application is composed of three sections:
- System Initialization - Initializes pins, I2C peripheral, UART used for logging
- Application Initialization -Initializes driver and configures module
- Application Task - (code snippet) Sequential temperature measurement every 500 milliseconds. Measurement readings will be logged to UART
The full application code, and ready to use projects can be found on our LibStock page.
void applicationTask() { temperature = THERMOJ_getTemperature(_THERMOJ_ADDRESS_GND); FloatToStr(temperature,text); LOG_write("Current temperature: ", _LOG_TEXT); LOG_write(text, _LOG_LINE); Delay_ms(500); }
Other MikroElektronika libraries used in the example:
- UART
- Conversions
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 click or RS232 click to connect your PC for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice can be used to read the message.
Thermo J Click-Platine
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.