Hey all, this is my first post so I apologize in advance but this issue has been bugging me for a while.
I'm currently working on implementing flight computer to manage thrust vectoring for a model rocket, but the issue of finding a suitable power source has been giving me a headache. Here is a breakdown of the components I'm using:
The intended power source for this circuit was typical 9V battery, however, with how often I am updating the postion of the servos (20ms), I believe the current draw is high enough that its causing a voltage drop and the circuit briefly shuts down.
Using 6 AA batteries works well, but this solution is far too heavy for the application. Does anyone know of any suitable power sources that can handle current requirements for the application while not being too heavy? The actual flight time is only a few seconds, so the source does not have to last long.
Those are for low power smoke alarms and the like, and can't supply enough current for servos. For servos, you need batteries capable of delivering Amperes (1 A per small servo).
Those batteries lack the current capability to be of much use on an Arduino project, especially running motors. Better a lipo cell with a boost converter.
Then the batteries you chose can't supply the required current.
It is not a question of battery voltage. With 6xAA you need a step down voltage regulator that must also be rated to easily handle the required current. The L7805 linear regulator can't handle more than 1 Ampere, and it wastes a huge amount of power.
The battery "C rating" is a measure of how much current it can provide. The battery capacity is stated in mAh (typically 2500 mAh for an AA battery). A 1C AA battery can supply 2500 mA or 2.5 Amperes.
I agree that its a current issue, however, if the LM7805 is the bottle neck for my current and not the power source then shouldn't I see the same shutdown issues between 4xAA and 6xAA?
So are you recommending using the 4xAA without the regulator? My only concern with that would be 6V is on the limit for Vin to the teensy 4.1, I could run it through a diode to drop it to 5.3V.
4xAA NiMH have a maximum open circuit voltage of 5.6V when freshly charged, 4.8V nominal.
The extremely inefficient, linear 7805 regulator has 2V dropout voltage, which means to deliver 5V, you have to supply it 7V minimum. The 1A current limit is another serious drawback.
EE isn't my field
Clearly, and this is a challenging project, requiring some technical expertise. You have hardly even started with the learning and research needed for a viable design.