Model Rocket Launcher Help
Hi. I am building a model rocket launcher with countdown, safe key, etc.
The firing fuse that lights up the motor (just a low resistance wire that heats up the engine) is conected to a logic level mosfet, or NPN transistor. My question is: as soon as the PIC powers up, for a very short time, can it put the ports to HIGH and fire the rocket before I want to???
I need it to be very safe so kids and other people can play with it.
Thanks a lot, and sorry for my english.
Manuel
Jiggling ports at power up...
Hi, Manu
It's a VERY common Pic issue : defining pin states at power up ...
so, it's easy but relatively unknown ...
1) Write your output intial state : PORTx = % 00110010 i.e.
2) Select input or output : TRISx = % 11000001 i.e.
yes ... so simple as this !!!
Alain