
The Eastron SDM630 is a DIN-rail mounted 3-phase energy meter that communicates via Modbus RTU over RS-485. The TapHome template provides 12 electricity meter devices covering total system energy, per-phase energy (L1/L2/L3), bidirectional import/export metering, and extensive service attributes for voltage, current, power factor, reactive power, frequency, and phase angles.
The meter supports three wiring configurations: 3-phase 4-wire (3P4W), 3-phase 3-wire (3P3W), and single-phase 2-wire (1P2W). All register values are IEEE 754 Float32 in Big Endian byte order, read via Modbus function code FC04 (input registers).
Hardware connection
RS-485 wiring
The SDM630 has a 2-wire RS-485 interface with two screw terminals. Connect using a daisy-chain topology:
- A (terminal 27) to A+/D+ on TapHome RS-485
- B (terminal 28) to B-/D- on TapHome RS-485
Use a daisy-chain wiring topology only. Star and stub/tee topologies cause signal reflections and data corruption. Terminate each end of the bus with a 120 ohm resistor (0.25 W minimum).
Cable specification:
- Type: Twisted pair, shielded (Belden 8761 or equivalent)
- Impedance: 120 ohm
- Max cable length: 1200 m
- Max nodes on bus: 32
Wiring modes
The meter must be configured for the correct wiring system via holding register 10 (password-protected):
| System Type | Value | Description |
|---|---|---|
| 3P4W | 3 | 3-phase 4-wire (default) |
| 3P3W | 2 | 3-phase 3-wire |
| 1P2W | 1 | Single-phase 2-wire |
Some registers are only available in specific wiring modes. For example, line-to-neutral voltages and neutral current are only available in 3P4W mode, while line-to-line voltages require 3P4W or 3P3W.
Configuration
Communication parameters
The default Modbus settings match the TapHome template:
| Parameter | Default | Options |
|---|---|---|
| Baud rate | 9600 | 2400, 4800, 9600, 19200, 38400 |
| Data bits | 8 | Fixed |
| Parity | None | None, Even, Odd |
| Stop bits | 2 | 1 (with parity) or 2 (without parity) |
| Slave ID | 1 | 1-247 |
Communication settings can be changed via holding registers (FC03/FC16). A password (default: 0000) is required for protected parameters like system type. The password is written to holding register 24 and auto-locks after 1 minute of inactivity.
Slave ID
When connecting multiple SDM630 meters on the same RS-485 bus, each meter must have a unique Slave ID (holding register 20, range 1-247). After importing the TapHome template, adjust the Slave ID in the module connection settings to match the meter.
Each Modbus request can read up to 40 parameters (80 registers) at once. The TapHome template polls the total energy meters at 2.5-second intervals and per-phase meters at 15-second intervals, which keeps the bus utilization manageable even with multiple meters.
Device capabilities
The template creates 12 ModbusElectricityMeter devices organized into three groups: total energy, export (grid feed-in), and import (grid consumption). Each device reports cumulative energy (kWh) and instantaneous power demand (kW).
Total energy metering
Four devices track overall active energy consumption:
- Total Energy (3-Phase) — system-wide total energy (A:342, kWh) and total power demand (A:52, W converted to kW). This device includes 12 service attributes providing system averages and totals: average line-to-line voltage, average line-to-neutral voltage, average and sum of line currents, neutral current, total apparent power (VA), total reactive power (VAr), total power factor, total phase angle, supply frequency (Hz), total apparent energy (kVAh), and total reactive energy (kVArh).
- Total Energy L1 — phase 1 total active energy (A:358, kWh) and phase 1 power (A:12, W to kW). Service attributes include line-to-neutral voltage, current, apparent power, reactive power, power factor, phase angle, and reactive energy for phase 1.
- Total Energy L2 — phase 2 total active energy (A:360, kWh) and phase 2 power (A:14, W to kW). Same per-phase service attributes as L1.
- Total Energy L3 — phase 3 total active energy (A:362, kWh) and phase 3 power (A:16, W to kW). Same per-phase service attributes as L1.
Export energy (grid feed-in)
Four devices track energy exported to the grid, useful for solar PV installations:
- Export Energy (3-Phase) — total export energy (A:74, kWh) and export power derived from negative total system power readings (A:52).
- Export Energy L1 — phase 1 export energy (A:352, kWh) and phase 1 export power.
- Export Energy L2 — phase 2 export energy (A:354, kWh) and phase 2 export power.
- Export Energy L3 — phase 3 export energy (A:356, kWh) and phase 3 export power.
Import energy (grid consumption)
Four devices track energy imported from the grid:
- Import Energy (3-Phase) — total import energy (A:72, kWh) and import power derived from positive total system power readings (A:52).
- Import Energy L1 — phase 1 import energy (A:346, kWh) and phase 1 import power.
- Import Energy L2 — phase 2 import energy (A:348, kWh) and phase 2 import power.
- Import Energy L3 — phase 3 import energy (A:350, kWh) and phase 3 import power.
The import/export split is achieved by reading the signed system power register (A:52). Positive values indicate grid consumption (import), negative values indicate grid feed-in (export). This is particularly useful for monitoring solar PV self-consumption and grid interaction.
Additional capabilities
The SDM630 also exposes registers for line-to-line voltages (L1-L2, L2-L3, L3-L1), total harmonic distortion (THD) for both voltage and current on each phase, demand-averaged current per phase with recorded maximums, import/export reactive energy counters, and ampere-hour metering. These can be added in a future template update.
Troubleshooting
No communication
- Verify the RS-485 wiring is daisy-chained (not star topology)
- Check A/B terminal connections — swap A and B if communication fails
- Confirm the bus termination: 120 ohm resistor at each end of the bus
- Ensure the TapHome baud rate matches the meter setting (default 9600, 8N2)
- Verify the Slave ID in TapHome matches the meter (default 1)
Incorrect readings
- Confirm the wiring system type (holding register 10) matches the actual installation — wrong system type causes zero or incorrect values
- For 3P3W mode, line-to-neutral voltage registers return zero — this is expected behavior
- Neutral current (A:224) reads zero in 3P3W mode — only available in 3P4W
Register byte order
The SDM630 uses Big Endian byte order (most significant register first) by default. If readings appear as extremely large or small numbers, check the byte order configuration. The TapHome template uses BigEndianFloat, which matches the meter’s default setting.
