Skip to product information
THERMO 5 click
1/4

MikroElektronika

THERMO 5 click

SKU: MIKROE-2571
₹ 1,159.00
Taxes included. Shipping calculated at checkout.
Out of stock
Visa
Mastercard
American Express
Discover
Google Pay
UPI

Description

THERMO 5 click measures temperature in default range of 0°C to 127°C and extended range of -64°C to 191°C with ±1°C accuracy. It carries the EMC1414 temperature sensor. The click is designed to run on a 3.3V power supply. THERMO 5 click communicates with the target microcontroller over I2C interface, with additional functionality provided by the INT pin on the mikroBUS™ line.

The click can monitor four temperature channels - three external and one internal.

THERMO 5 click features

THERMO 5 click can be used to measure temperatures with up to two/three externally connected diodes.

Each external diode channel is configured with Resistance Error Correction and Beta Compensation based on user settings and system requirements.

The device contains programmable High, Low, and Thermo limits for all measured temperature channels.

If the measured temperature goes below the Low limit or above the High limit, the ALERT pin can be asserted (based on user settings).

If the measured temperature meets or exceeds the Thermo Limit, the THERM pin is asserted unconditionally, providing two tiers of temperature detection.

EMC1414 features

The EMC1414 monitors four temperature channels. It provides ±1°C accuracy for both external and internal diode temperatures.

Resistance Error Correction feature automatically eliminates the temperature error caused by series resistance allowing greater flexibility in routing thermal diodes.

Beta Compensation feature eliminates temperature errors caused by low, variable beta transistors common in today’s fine geometry processors.

Specifications

Type Temperature,Humidity
Applications Personal computers, electronics equipment, industrial controllers
On-board modules EMC1414 temperature sensor
Key Features ±1°C accuracy, 0.125°C resolution
Interface I2C,GPIO
Input Voltage 3.3V or 5V
Compatibility mikroBUS
Click board size S (28.6 x 25.4 mm)

Pinout diagram

This table shows how the pinout on THERMO 5 click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).

Notes Pin Mikrobus logo.png Pin Notes
NC 1 AN PWM 16 NC
NC 2 RST INT 15 INT ALERT/THERM Interrupt Output
NC 3 CS TX 14 NC
NC 4 SCK RX 13 NC
NC 5 MISO SCL 12 SCL I2C Clock
NC 6 MOSI SDA 11 SDA I2C Data
Power supply +3.3V 7 3.3V 5V 10 NC
Ground GND 8 GND GND 9 GND Ground

Programming

Code examples for THERMO 5 click, written for MikroElektronika hardware and compilers are available on Libstock.

Code snippet

This code snippet initializes the MCU, the TFT display and I2C module. In an infinite loop we are reading 4 different temperatures from diodes and displaying them on screen.

01 //Main program
02 void main()
03 {
04 // MCU Init
05 AD1PCFG = 0xFFFF; // Configure AN pins as digital I/O
06 JTAGEN_bit = 0; // Disable JTAG
07 TRISA = 0; // Configure PORTA as output
08 TRISB = 0; // Configure PORTB as output
09 TRISC = 0; // Configure PORTC as output
10 TRISD = 0; // Configure PORTD as output
11 
12 LATA = 0; //Set PORTA value to zero
13 LATB = 0; //Set PORTB value to zero
14 LATC = 0; //Set PORTC value to zero
15 LATD = 0; //Set PORTD value to zero
16 
17 // TFT Init
18 TFT_BLED_Direction = 0;
19 TFT_Init_ILI9341_8bit(320, 240);
20 TFT_BLED = 1;
21 DrawFrame();
22 
23 // I2C Init
24 I2C2_Init_Advanced(50000, 100000);
25 delay_ms(500);
26 // Sets the I2C1 module active
27 I2C_Set_Active(&I2C2_Start,
28 &I2C2_Restart,
29 &I2C2_Read,
30 &I2C2_Write,
31 &I2C2_Stop,
32 &I2C2_Is_Idle);
33 
34 diodeTemperature = 0.0;
35 
36 
37 // Temperature read loop
38 while (1)
39 {
40 TFT_Rectangle( 200, 50, 280, 200 );
41 
42 diodeTemperature = TH5Read(INT_DIODE);
43 sprintf( txt, "%.2f C", diodeTemperature);
44 TFT_Write_Text( txt, 200, 60 );
45 
46 diodeTemperature = TH5Read(EXT_DIODE1);
47 sprintf( txt, "%.2f C", diodeTemperature);
48 TFT_Write_Text( txt, 200, 100 );
49 
50 diodeTemperature = TH5Read(EXT_DIODE2);
51 sprintf( txt, "%.2f C", diodeTemperature);
52 TFT_Write_Text( txt, 200, 140 );
53 
54 diodeTemperature = TH5Read(EXT_DIODE3);
55 sprintf( txt, "%.2f C", diodeTemperature);
56 TFT_Write_Text( txt, 200, 180 );
57 
58 delay_ms(500);
59 }

You may also like