EmsTechLabs Logo EmsTechLabs

Channel 10 Modbus Register 1007: Channel 10 dugpunkt

Technical documentation for Modbus register 1007 on Channel 10. Data type: INT16. Includes Python and YAML configuration examples.

January 16, 2026 3 read

Technical Definition

The register channel 10 dugpunkt at address 1007 is used to monitor channel 10 dugpunkt on the Channel 10.

  • Protocol: Modbus RTU
  • Data Type: INT16
  • 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 channel_10 dugpunkt (Address: 1007)
# Note: Check if your device uses 0-based or 1-based addressing
result = client.read_input_registers(address=1007, 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: "channel_10 dugpunkt"
  address: 1007
  value_type: INT16
  unit_of_measurement: "°C"

Connection Diagram

Here is the standard RS485 wiring for this configuration:

graph TD
    PLC[Host Controller / Home Assistant]
    Device[Channel 10]

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


💡 Engineer's Insight

Analysis: Dew point Temperature in degrees Celsius (°C). The Temperature at which condensation begins.

Troubleshooting: Sensor malfunction, calibration issue, or atmospheric conditions exceeding sensor limits.