This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:common:add-ons:cooling-fan [2022/07/11 23:54] hyphop [Fan application] |
products:sbc:common:add-ons:cooling-fan [2023/11/15 01:20] (current) sravan |
||
---|---|---|---|
Line 3: | Line 3: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | This document | + | This page mainly introduces |
===== Ubuntu ===== | ===== Ubuntu ===== | ||
- | ==== Fan application ==== | + | <WRAP important> |
+ | This setting is only applicable to 4.9, 5.4, and 5.15 linux kernel | ||
+ | </ | ||
- | This method is recommended if you are using desktop OS. Find '' | + | ==== Fan Application ==== |
+ | |||
+ | The following | ||
{{/ | {{/ | ||
Line 18: | Line 22: | ||
You can also use command to control the FAN from terminal. | You can also use command to control the FAN from terminal. | ||
- | * Set the fan mode: \\ ```shell | + | === Set the fan mode === |
- | $ fan.sh off | + | |
- | $ fan.sh on | + | ^ fan mode ^ command ^ |
- | $ fan.sh auto | + | | off | '' |
+ | | on | '' | ||
+ | | auto | '' | ||
+ | |||
+ | === Get the fan mode === | ||
+ | |||
+ | ```shell | ||
+ | fan.sh mode | ||
``` | ``` | ||
- | * Read the fan mode: \\ ```shell | + | |
- | $ fan.sh | + | === Set the fan speed === |
+ | |||
+ | ^ fan speed ^ command ^ | ||
+ | | high | '' | ||
+ | | mid | '' | ||
+ | | low | '' | ||
+ | |||
+ | === Get CPU temperature === | ||
+ | |||
+ | ```shell | ||
+ | fan.sh | ||
``` | ``` | ||
- | * Set the fan speed: \\ ```shell | + | |
- | $ fan.sh high | + | === Get and Set the trigger temperature === |
- | $ fan.sh mid | + | |
- | $ fan.sh low | + | You can get the trigger temperature from the nodes below: |
+ | |||
+ | ^ fan mode ^ trigger temp parameter ^ | ||
+ | | low | ''/ | ||
+ | | mid | ''/ | ||
+ | | high | ''/ | ||
+ | |||
+ | e.g. Get the low trigger temperature: | ||
+ | |||
+ | ```shell | ||
+ | cat / | ||
``` | ``` | ||
- | * Read the fan speed: \\ ```shell | + | |
- | $ fan.sh level | + | e.g. Set the low trigger temperature to '' |
+ | |||
+ | ```shell | ||
+ | echo 40 | sudo tee /sys/class/fan/ | ||
``` | ``` | ||
- | * Read CPU temperature: | + | |
- | $ fan.sh temp | + | <WRAP tip > |
+ | The trigger temperature only effect the fan works in auto mode. | ||
+ | </ | ||
+ | |||
+ | === Mainline linux === | ||
+ | |||
+ | Fan is controlled automatically by linux, and unit will be in millicelcius | ||
+ | |||
+ | eg. get the auto trigger | ||
``` | ``` | ||
+ | cat / | ||
+ | ``` | ||
+ | |||
+ | eg. set the auto trigger temp to 40000 millicelcius | ||
+ | ``` | ||
+ | echo 40000 | sudo tee / | ||
+ | ``` | ||
+ | |||
+ | <WRAP tip > | ||
+ | To turn off the fan, set trigger temp to higher amount such as 80000, \\ | ||
+ | To turn on the fan, set the trigger temp to lower amount such as 10000. | ||
+ | </ | ||
+ | |||
===== Android ===== | ===== Android ===== | ||
+ | Check system settings to control the fan. | ||