Power quality analyzer

I can’t pair my Modus TCP RPM-416 power quality analyzer.
Can someone help?


This is my code but it doesn’t work

# Example configuration.yaml entry
modbus:
  - name: RPM-416
    type: tcp
    host: 192.168.1.13
    port: 502
    sensors:
      - name: "Volt.L1"
        slave: 1
        address: 101
        input_type: input
        count: 1
        data_type: uint16
        precision: 1
        scale: 0.1
        unit_of_measurement: V
        device_class: voltage

Not a specialist (and I cannot read russian), but to read a value on 2 registers, you should use

        count: 2
        data_type: uint32

ALL Works!