Get Power States for Gude devices via Modbus

Hi Everyone,

I am using Power-Switches from Gude for my IT Rack. I figured out how to switch this via Modbus. This works very well. Here is the code I am using:

modbus:
  - name: "Expert Power Control 8041-1"
    type: tcp
    host: IP-ADRESS
    port: 502
    switches:
      - name: gude1.port01
        address: 0
        write_type: coil
        verify:
      - name: gude1.port02
        address: 1
        write_type: coil
        verify:
      - name: gude1.port03
        address: 2
        write_type: coil
        verify:
      - name: gude1.port04
        address: 3
        write_type: coil
        verify:
      - name: gude1.port05
        address: 4
        write_type: coil
        verify:

I know that Gude also can measure the Power of the Ports and also the overall Power. I found another topic here using MQTT. However I want to use the Modbus. Anyone did that before?

Thanks