Xiaomi Wall plug zigbee - values

Hi there, i have got Xiaomi wall plug zigbee EU version. Everything seems to be ok, i am just curious what is this value “current” in my Developer Tools - States under [sensor.wall_plug1_current_power]

Value of this sensor 181 = actual current consumption 181W right?
Temperature, voltage, clear … but what is the current value? It cant be 772W actual consumption.
Well ok, its old PC with GPU RX480 mining ETH running 24/7, but i am pretty sure its not a 772W. Or is it a mA value?

My daily consumption sensor is crazy as well, it should be about 4kWh, but the sensor is about 280W.

This is my settings under configuration.yaml :

# Utility meter Xiaomi wall plug 1 RIG #
  daily_rig:
    source: sensor.wall_plug1_current_power
    cycle: daily
  monthly_rig:
    source: sensor.wall_plug1_current_power
    cycle: monthly 

and sensor.yaml

### Xiaomi Wall plug  ############################     
   - platform: template
     sensors:
      rig_costs:
       friendly_name: "RIG Total Cost"
       unit_of_measurement: 'kč'
       value_template: "{{ (states('sensor.wall_plug1_total_consumption')|float * 2.9)| round(2) }}" 
   - platform: template
     sensors:
      rig_costs:
        friendly_name: "RIG Daily Cost"
        unit_of_measurement: 'kč'
        value_template: "{{ (states('sensor.daily_rig')|float * 2.9)| round(2) }}"
   - platform: template
     sensors:
      rig_costs:
       friendly_name: "RIG Monthly Cost"
       unit_of_measurement: 'kč'
       value_template: "{{ (states('sensor.monthly_rig')|float * 2.9)| round(2) }}"