EmsTechLabs Logo EmsTechLabs

Esphome Configuration Example Modbus Register 1370: Active power

Technical documentation for Modbus register 1370 on Esphome Configuration Example. Data type: U DWORD. Includes Python and YAML configuration examples.

January 16, 2026 1 min read

Technical Definition

The register Active power at address 1370 is used to monitor active power on the Esphome Configuration Example.

  • Protocol: Modbus RTU
  • Data Type: U DWORD
  • Unit: W
  • 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 Active power (Address: 1370)
# Note: Check if your device uses 0-based or 1-based addressing
result = client.read_input_registers(address=1370, 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: "Active power"
  address: 1370
  value_type: U_DWORD
  unit_of_measurement: "W"

Connection Diagram

Here is the standard RS485 wiring for this configuration:

graph TD
    PLC[Host Controller / Home Assistant]
    Device[Esphome Configuration Example]

    PLC -- "A+ (D+)" --> Device
    PLC -- "B- (D-)" --> Device
    PLC -- GND --> Device


💡 Engineer's Insight

Analysis: Represents the real power being consumed or supplied by the system. Units are Watts (W).

Troubleshooting: Zero value indicates no active power consumption. Unexpected values may point to load issues or measurement errors.