eontech

Members
  • Posts

    6
  • Joined

  • Last visited

eontech's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Thanks for the last post @dfarrall It helped me!
  2. hi, Im adding a new image so you can update the github one.
  3. Hi again, I think I made the PR. Its my first time, so let me know if I've do it right. I don't know how to add the option to toggle it any tips? btw, I added the estimation for 8 PSU, RMi and HX, I've tested with my RM850i and with an unknown, to check that don't fail to the rest of the users. Please let me know if anyone can check with others PSU. Thanks
  4. Hi, ty!, this code it's only for the 850 model, let me add the others and i'll send you a PR.
  5. Hi, I made some changes to add the efficiency on my PS. I found a python version that include the metrics to calculate the efficiency, so I add this on the PHP. https://github.com/liquidctl/liquidctl/blob/main/liquidctl/driver/corsair_hid_psu.py the code: $output_power = round($data['total watts']); $input_voltage = round($data['supply volts']); $fpowin115 = 0.000122800024680 * $output_power * $output_power + 1.0159421430340847 * $output_power + 13.555472968718759; $fpowin230 = 0.000088160542548 * $output_power * $output_power + 1.0234738318592156 * $output_power + 10.832902491655597; $est_input_power = $fpowin115 + ($fpowin230 - $fpowin115) / 115 * ($input_voltage - 115); $efficiency = round($output_power * 100 / $est_input_power);