Table of Contents

NT18B07: 7 Kanal RS485 Temperatur Sensor with Modbus RTU

The NT18B07 is a 7-channel NTC temperature sensor interface board/module that uses the MODBUS RTU communication protocol over an RS485 interface for industrial and automation applications. Requires external B3950 10K 1% NTC thermistors

NT18B07 Description

B3590 10K 1% NTC thermal sensor

B3590 10K 1% NTC thermal sensor

NT18B07 Modbus settings

Default settings: SlaveID: 1, 9600 baud, parity: N,8,1

holding register addressesNumber of registersDescriptionUnitNote
0x01CH1 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x11CH2 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x21CH3 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x31CH4 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x41CH5 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x51CH6 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x61CH7 temperature sensor0.1 °C0xF555 (-2731): Sensor Error
0x81CH1 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0x91CH2 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0xA1CH3 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0xB1CH4 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0xC1CH5 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0xD1CH6 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0xE1CH7 temperature correction value0.1 °C>0: increase, <0: decrease, default:0
0x00FD1Automatic temperature reportSecond0: (default) query function, 1-255 report time (1 - 10 seconds)
0x00FE1RS485 address (station address)-Read address: 0x00FF, write address 1-247, default: 1
0x00FF1Baud rate-0:1200, 1:2400, 2:4800, 3:9600 (default), 4:19.200, 5: factory reset

If you'd like to support the development of the site with the price of a coffee — or a few — please do so here.

Here's a handy tip: you can quickly save this page as a PDF by clicking “export to PDF” in the menu on the right side of the screen.

2026/02/14 23:38

Arduino

The NT18B07 is a 7-channel NTC thermistor temperature acquisition module that communicates via RS485 Modbus RTU. Unlike the MAX31865 (which is SPI-based), the NT18B07 requires an RS-485-to-TTL converter (e.g., a MAX485 module) to interface with an Arduino.

Wiring Diagram

To connect the NT18B07 to an Arduino Uno using a standard MAX485 module:

Arduino Example Code

This code uses the ModbusMaster library to read temperatures from the first 7 channels.

#include <ModbusMaster.h>
#include <SoftwareSerial.h>
 
#define MAX485_RE_DE 4
SoftwareSerial rs485(2, 3); // RX, TX
 
ModbusMaster node;
 
void preTransmission() { digitalWrite(MAX485_RE_DE, 1); }
void postTransmission() { digitalWrite(MAX485_RE_DE, 0); }
 
void setup() {
  pinMode(MAX485_RE_DE, OUTPUT);
  digitalWrite(MAX485_RE_DE, 0);
 
  Serial.begin(9600);
  rs485.begin(9600); // Default NT18B07 baud rate
 
  node.begin(1, rs485); // Default Slave ID is 1
  node.preTransmission(preTransmission);
  node.postTransmission(postTransmission);
}
 
void loop() {
  // Read 7 registers starting at 0x0000 (Channels 1-7)
  uint8_t result = node.readHoldingRegisters(0x0000, 7);
 
  if (result == node.ku8MBSuccess) {
    for (int i = 0; i < 7; i++) {
      int16_t rawTemp = node.getResponseBuffer(i);
      // Temperature is stored as raw value x 10. Handle negative values.
      float celsius = (rawTemp > 32767) ? (rawTemp - 65536) / 10.0 : rawTemp / 10.0;
      Serial.print("CH"); Serial.print(i+1);
      Serial.print(": "); Serial.print(celsius); Serial.println(" C");
    }
  } else {
    Serial.print("Modbus Error: 0x"); Serial.println(result, HEX);
  }
  delay(2000);
}

Modbus topics on lamaPLC

PageDateTags
2026/04/23 21:51, , , ,
2026/04/23 21:52, , , , , , ,
2026/04/23 21:52, , , , , , ,
2026/04/23 21:51, , , , , , , , ,
2026/02/14 18:25, , , , , , , ,
2026/04/23 21:51, , , ,
2026/02/15 00:34, , , , , , , ,
2026/04/23 21:51, , , ,
2026/02/15 00:22, , , , , , , ,
2026/02/14 18:42, , , , , , ,
2026/04/23 21:52, , , , , , , ,
2026/04/23 21:52, , , , , , , , , ,
2023/06/19 23:24, , , , , , , , , , , , ,
2026/02/14 18:26, , , , , , , , ,
2026/02/14 23:49, , , , ,
2023/06/25 00:43, , , , , ,
2024/08/18 16:52, , , , , , ,
2026/02/15 00:00, , , , , , , , ,
2026/04/23 21:51, , ,
2026/02/14 18:49, , , , , ,
2026/04/23 21:52, , , , , , , , , , , , , , , ,
2026/04/23 21:52, , , , ,
2026/04/23 21:52, , , , , , ,




This page has been accessed for: Today: 5, Until now: 6