Quote:
Originally Posted by forgottenmindset
<img src="http://opengauge.googlecode.com/svn/trunk/mpguino/wiring.GIF">
Isn't that an led next to the transistor....
|
I *think* you are referring to the transistor itself. it is a
to-92 case, round with a flat spot. It has a lead to the backlight LED on the collector.
Quote:
Originally Posted by forgottenmindset
But now I don't have an injector pulse??? C'est la vie
|
I don't have enough info to tell you much, I'm not even sure what you "clipped", LOL.
Quote:
Originally Posted by forgottenmindset
dcb, dude... I love you
|
Quote:
Originally Posted by forgottenmindset
if( instantmph() <= 60 )
|
I did not want to invite floating point math to the PIC party (I tried, he was a very unruly guest), instead most values are really 1000 times greater than they appear, so this would be more correct:
if( instantmph() <= 60000ul )
1000 times works pretty well because everything is displayed to two decimal places and the third one is for rounding.