I think Malcolm had it... it's about 8.5 PWM steps per degree, over a 30 degree span.

So, something like this?


Code:
If temp < 90 then 
	duty = 0
else
	duty = (temp - 90)  * 85 /10   'subtract 90 from temp, and multiply * 8.5
endif


steve