Samsagax / hhfc

Hwmon Handheld Fan Controller (hhfc) is a user space driver for fans based on hwmon sysfs
GNU General Public License v3.0
8 stars 1 forks source link

Gather information for known devices configurations #1

Open Samsagax opened 1 year ago

Samsagax commented 1 year ago

Gather info on handhelds to be able to have at least an example for them. Most handhelds are similar but would be nice to have a compendium of sane default configurations for them.

Crashdummyy commented 1 year ago

Sample config for the Aokzoe A1. Requires the installation of oxp-sensors

SENSORS:
  - name: "cpu"
    driver_name: "k10temp"
    temp_input: "temp1_input"
    divisor: 1000
    offset: 0
  - name: "gpu"
    driver_name: "amdgpu"
    temp_input: "temp1_input"
    divisor: 1000
    offset: 0
FANS:
  - name: "fan1"
    driver_name: "oxpec"
    handle: "pwm1"
    max_control_value: 255
    min_control_value: 0
    fan_input: "fan1_input"
    allow_shutoff: "yes"
    minimum_duty_cycle: 25
    sensors:
      - name: "cpu"
        curve: [
         [40, 0],
         [50, 30],
         [60, 50],
         [70, 100]
        ]
      - name: "gpu"
        curve: [
         [40, 0],
         [50, 30],
         [60, 50],
         [70, 100]
        ]
Samsagax commented 1 year ago

Sample config for the Aokzoe A1. Requires the installation of oxp-sensors

Now it is in main branch