Modbus Esp8266 Modbus Register 115: T5 Storage Tank Water Temperature
Technical documentation for Modbus register 115 on Modbus Esp8266. Data type: S WORD. Includes Python and YAML configuration examples.
Technical Definition
The register T5 Storage Tank Water Temperature at address 115 is used to monitor t5 storage tank water Temperature on the Modbus Esp8266.
- Protocol: Modbus RTU
- Data Type: S WORD
- Unit: °C
- Access: Read Only
How to Read (Python pymodbus)
Use this code snippet to read this specific value via RS485:
from pymodbus.client.sync import ModbusSerialClient
client = ModbusSerialClient(method='rtu', port='/dev/ttyUSB0', baudrate=9600)
client.connect()
# Read T5_Storage_Tank_Water_Temperature (Address: 115)
# Note: Check if your device uses 0-based or 1-based addressing
result = client.read_input_registers(address=115, count=2, unit=1)
if not result.isError():
print(f"Raw Value: {result.registers}")
else:
print("Error reading register")
client.close()
Integration (Home Assistant)
Paste this into your configuration.yaml:
- platform: modbus_controller
name: "T5_Storage_Tank_Water_Temperature"
address: 115
value_type: S_WORD
unit_of_measurement: "°C"
Connection Diagram
Here is the standard RS485 wiring for this configuration:
graph TD
PLC[Host Controller / Home Assistant]
Device[Modbus Esp8266]
PLC -- "A+ (D+)" --> Device
PLC -- "B- (D-)" --> Device
PLC -- GND --> Device
💡 Engineer's Insight
Analysis: Storage tank water Temperature (T5). Units typically in °C or °F. Monitors the Temperature of water stored in a buffer tank.
Troubleshooting: Indicates potential heating element failure, thermostat issues, or inadequate water circulation within the tank. Verify heating and circulation.