-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Archived Topics
- Notebooks Archive
- Re: Probook 4530s fan noise : DSDT table edition ?

Create an account on the HP Community to personalize your profile and ask a question

03-08-2012 05:38 AM
03-09-2012 01:32 AM - edited 03-09-2012 01:33 AM
k3mp said :- "Using TPFC 6.2:
Manual Levels:
255: Fan is Off
254-128: unknow
128: Fan is "silent"
80: Fan at medium speed
54: Fan is loud
1: maximum speed"
I found that on my 4330S that 128 and 254 on Manual both have the same effect as choosing the Bios setting. Namely that the fan runs at minimum level all the time but is not silent.
03-09-2012 04:40 AM
Hey Capvermell1,
when disabling the BIOS option "Fan always on while on AC power" the fan will stop on level 255. Any other level between 128 and 254 will be the same speed (my thoughts, not proved!).
Level 255 will have no effect when the bios option is enabled and you are on AC power.
I'm actually testing with ACFanControl.
Here's something to read about embedded chipsets: http://www.p35-forum.de/index.php?page=Attachment&attachmentID=3056
Setting the Byte 47 with ACFanControl to 128 will be "silent", 255 will be off. Maybe anyone is able to configure this program?
k3mp
03-09-2012 04:14 PM
03-09-2012 09:49 PM
simple written HP Fan Control in Visual Basic..
http://dl.dropbox.com/u/4537271/HPFC.zip
1st: install TVicPortInstall41.exe
2nd: run hpfc.exe
ask me for sources.
Keep it simple does:
<snip>
If ctemp < 45 Then
If speed < 128 Then
write_ec(&H80, &H2F) //write 128 (fan slow)
Sleep(10000)
ElseIf speed < 255 Then
write_ec(&HFF, &H2F) //fan off
Sleep(10000)
End If
ElseIf ctemp < 52 Then
write_ec(&H80, &H2F) //fan slow
Else
If speed > 82 Then
write_ec(&H10, &H2F) //fan fast
End If
End If
</snip>
k3mp
03-10-2012 12:54 AM
This is cool, but were you able to completely turn the fan off? For me, pushing Fan OFF switches FAN level to 82 or sometimes 74. Also, the temperature reading seems off -- it keeps showing 31-32, where my other monitoring software reports 45-50.
Thanks.
03-10-2012 07:27 AM - edited 03-10-2012 08:26 AM
changed some code to use wmi...
heres the updated version:
http://dl.dropbox.com/u/4537271/HPFC_v.0.0.2.zip
k3mp
