I've always felt the RGB led is a bit underused by the fan being either at 100% or off, so I altered the relevant bit of temperatureprobes.h to:
// 0=auto (by sensor), 1=manualif(dewconfig.fanmanualcontrol==0)// check if fan control is under fan temp sensor{if(boardtemp>=dewconfig.fantempon+10)// if board/case temp too high{fanspeed=POWER_100;updatefanmotor();}elseif(boardtemp>=dewconfig.fantempon+5){fanspeed=POWER_75;updatefanmotor();}elseif(boardtemp>=dewconfig.fantempon){fanspeed=POWER_50;updatefanmotor();}elseif(boardtemp<dewconfig.fantempoff)// if pcb temp < dewconfig.fantempoff then turn fan off{fanspeed=POWER_0;updatefanmotor();}}else{// manual control of fan by motor speed settingupdatefanmotor();}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've always felt the RGB led is a bit underused by the fan being either at 100% or off, so I altered the relevant bit of temperatureprobes.h to: