leonmaxx / asus_fanmode

Daemon that controls Fan Boost Mode automatically on ASUS TUF laptops
BSD 2-Clause "Simplified" License
51 stars 7 forks source link

Vivobook pro K3400PH #18

Open biji opened 1 year ago

biji commented 1 year ago

Hi, in my laptop, Vivobook pro K3400PH, there is only two switch available:

# auto
echo 2 > /sys/devices/platform/asus-nb-wmi/hwmon/hwmon5/pwm1_enable
# full fan speed
echo 0 > /sys/devices/platform/asus-nb-wmi/hwmon/hwmon5/pwm1_enable

Then my config is:

cpu_temp_divider = 1000

# Path to fan boost mode or throttle thermal policy
fan_mode = /sys/devices/platform/asus-nb-wmi/hwmon/hwmon5/pwm1_enable

# Modes
mode_silent    = 2
mode_normal    = 2
mode_overboost = 0

# Poll interval in milliseconds
poll = 10000

# High - temperature at which mode is enabled
# Low  - temperature at which mode switches back
normal_high = 70
normal_low  = 60

overboost_high = 89
overboost_low  = 80

Probably you can add auto detection for similiar laptops

Thanks