xboxscene.org forums

Author Topic: How Do I Set The Fanspeed To 60% In Uix?  (Read 369 times)

KyesaRRi

  • Archived User
  • Full Member
  • *
  • Posts: 205
How Do I Set The Fanspeed To 60% In Uix?
« on: May 30, 2005, 04:23:00 PM »

I dont think uix has that option, it can only read the fan speed ATM, not change it. Just edit you're bios so it has the fanspeed at 60%
Logged

Godflesh

  • Archived User
  • Newbie
  • *
  • Posts: 9
How Do I Set The Fanspeed To 60% In Uix?
« Reply #1 on: May 31, 2005, 08:22:00 AM »

I have Xecuter2...and no idea how to do it. sad.gif

Could somebody show the how to do this?
Logged

rixter110

  • Archived User
  • Jr. Member
  • *
  • Posts: 62
How Do I Set The Fanspeed To 60% In Uix?
« Reply #2 on: May 31, 2005, 11:22:00 PM »

sorry double post
Logged

rixter110

  • Archived User
  • Jr. Member
  • *
  • Posts: 62
How Do I Set The Fanspeed To 60% In Uix?
« Reply #3 on: May 31, 2005, 11:26:00 PM »

This was Exiles Code So I take no credit, and i might be missing something but try this to add fan control function to uix....

In Default.xip..default.xap enter this code at the very bottom
-----------------------------------------------------------------------------------------
// Function to set Fan Speed

function SetFanSpeed() //Exiles
{
var IniFile = new Settings;
IniFile.SetIniSection( "Sys Config" );
var FanSpeedST = IniFile.GetIniValue( "FanSpeed" );
var FanSpeedS = ReturnInteger(FanSpeedST);
if (FanSpeedS==20) { theConfig.SetFanSpeed(20); }
else if (FanSpeedS==30) { theConfig.SetFanSpeed(30); }
else if (FanSpeedS==40) { theConfig.SetFanSpeed(40); }
else if (FanSpeedS==50) { theConfig.SetFanSpeed(50); }
else if (FanSpeedS==60) { theConfig.SetFanSpeed(60); }
else if (FanSpeedS==70) { theConfig.SetFanSpeed(70); }
else if (FanSpeedS==80) { theConfig.SetFanSpeed(80); }
else if (FanSpeedS==90) { theConfig.SetFanSpeed(90); }
else if (FanSpeedS==100) { theConfig.SetFanSpeed(100); }
else { theConfig.SetFanSpeed(100); }
}


Then add these 2 lines in your system Folder at the very bottom of your UIX ini file

example...

-----------------------------------------------------------------------------------------------
Path=emulators
Name=Emulators
[Games]
Path=games
Name=Games
[Sys Config]   <-------ADD
FanSpeed=30 <-------ADD


now you can control fan speed through you dash!
 beerchug.gif     also you must reset reset dash for update to take place
Logged

rixter110

  • Archived User
  • Jr. Member
  • *
  • Posts: 62
How Do I Set The Fanspeed To 60% In Uix?
« Reply #4 on: June 01, 2005, 11:14:00 AM »

ok i found it lol..all you have to do is a search, i was missing code....

http://forums.xbox-s...63&hl=fan speed

 biggrin.gif
Logged

Godflesh

  • Archived User
  • Newbie
  • *
  • Posts: 9
How Do I Set The Fanspeed To 60% In Uix?
« Reply #5 on: June 02, 2005, 07:32:00 AM »

Anyone able & willing to edit my files? Contact me (MSN) if you can / want to help me with this.... unsure.gif
Logged