mLink NTC Temperature Sensor
The mLink NTC temperature sensor is a serial (I2C/IIC) module that interfaces to a wired remote NTC temperature sensor probe (supplied with module). The module continuously takes measurements from the sensor probe and provides the results as a temperature in degrees centigrade via its serial I2C interface. It is compatible with other mLink or standard I2C modules allowing you to daisy-chain several different types of modules together using only the two I2C pins of your microcontroller. Its default I2C address can be changed via software so that multiple NTC modules can be connected to one microcontroller.
The mLink NTC temperature sensor is a serial (I2C/IIC) module that interfaces to a wired remote NTC temperature sensor probe (supplied with module). The module continuously takes measurement from the sensor probe and provides the results as a temperature in degrees centigrade via its serial I2C interface. It is compatible with other mLink or standard I2C modules allowing you to daisy-chain several different types of modules together using only the two I2C pins of your microcontroller. Its default I2C address can be changed via software so that multiple NTC modules can be connected to one microcontroller.
For Arduino users you can use the mLink library (see below) to control any type of mLink module. Only one single instance of the library is needed to control multiple types of mLink modules resulting in very little resources overhead and therefore making it great for Arduinos with small amounts of memory and pin counts.
For Raspberry Pi users we have a Python module which can be installed via pip or downloaded and installed directly from our forum. Please see the mLink Python forum thread for requirements and download link here
Module specifications:
Module code: HCMODU0186
Supply Voltage (VDD): 3.3V to 5.5V
Operating range (recommended): -5 to 105oC
Temperature resolution: ±0.7oC @ 0oC / ±0.1oC @ 25oC / ±1.5oC @ 100oC
Current consumption (idle): 5.6mA
Current consumption (sleep): 0.5mA
Interfaces: I2C, NTC (10K 3950) sensor
I2C Interface speed: 400kbits/s (fast mode)
I2C default address (HEX): 0h54
Maximum number of modules: 5 with pullups fitted, 112 with pullups removed*
Module dimensions (inc headers): 40mm x 10.6mm x 10mm (sensor not fitted)
*Note the maximum number of connected modules will depend on cable lengths and power requirements of each module. Do not exceed 5 mLink modules connected in series with all pullups fitted.
NTC sensor specifications:
Operating range: -20 to 105oC *
Type: NTC 10K 3950
Accuracy: +-1% (10K) **
Probe insulation: >100MOhm
Sensor material: Stainless steel waterproof
Cable length: 2 metres
* See module specifications for recommended operating range
**Sensor accuracy is limited by the module's resolution. See module specification or module resolution table in this document.
Arduino Connection Example:
Arduino Temperature Example:
This sketch uses the mLink library to read the temperature (in oC) from the mLink PTC temperature sensor module (SKU: HCMODU0186).
-
#include "mLink.h" // Include the library
-
-
mLink mLink; // Create an instance of the library
-
-
#define I2C_ADD 0x54 // Default I2C address
-
-
void setup()
-
{
-
Serial.begin(9600);
-
-
mLink.init(); // Initialise the library
-
}
-
-
-
void loop()
-
{
-
float temp = mLink.NTC_Temp(I2C_ADD); // Get the temperature in oC
-
-
Serial.print("Temperature: "); Serial.println(temp);
-
-
delay(1000); // Wait a second before reading again
-
}
Arduino examples and downloads available on our support forum here.
Specific References
16 other products in the category
TTP223 Capacitive Touch Sensor
A capacitive touch sensor module based on the dedicated TTP223 touch sensor IC. The module...
5A Range ACS712T ELC-05B...
On-board ACS712T ELC-05B current sensor; Working voltage: DC 5V; Power LED indicator; Measures...
- On sale!
Capacitive Touch Sensor Module
- Main chip: LM393
- Working voltage: DC 5V
- Single channel signal output
-...
Infrared sensor receiver...
Infrared receiver module uses a 1838 infrared receiver. This is a universal type, with steel,...
BF350-3AA Strain Gauge Module
This strain gauge module uses a BF350 sensor to measure mechanical stresses in solid...
- Currently Out of Stock
Linear sliding 10K...
A linear sliding potentiometer module allowing for very smooth and precise control. The module...
Side Mounted Water Level /...
This water level sensor / float switch can be used to sense when a liquid has reached a set...
IR infrared obstacle...
Transmitter and receiver in one photoelectric sensor. The sensor has an adjustable detection...
Mini Magnetic Reed Module
This is a very simple module that contains a magnetic reed switch which will close its...