47 lines
1.8 KiB
Markdown
Raw Normal View History

2025-02-16 13:52:06 +01:00
---
title: Power Supply
BOMTable: true
2025-03-01 16:38:05 +01:00
order: 0
2025-02-16 13:52:06 +01:00
shortDescription:
2025-02-16 14:50:06 +01:00
"Create a power supply for your future circuits"
2025-02-16 13:52:06 +01:00
BOM:
- type: Capacitor
count: 2
value: "10uF"
- type: Resistor
count: 2
value: "10Ω"
- type: Misc
label: "2x 9V battery clips"
2025-03-01 16:38:05 +01:00
- type: Misc
label: "3 conductive nails for the +V, -V & GND pins"
2025-02-16 14:50:06 +01:00
Connections:
- -9v
- +9v
- GND
2025-02-16 13:52:06 +01:00
pcb: "/recipes/power-supply/PaperCircuit.svg"
2025-03-01 16:38:05 +01:00
2025-02-16 13:52:06 +01:00
---
2025-02-16 14:50:06 +01:00
This circuit provides -9V[^negative-volt], 0V/Ground and +9V outputs, by combining two 9V batteries. If your project requires it, you can use any kind of battery instead of the 9V one, as long as they're two of the same [^18V].
2025-02-16 13:52:06 +01:00
2025-03-01 16:38:05 +01:00
You could skip the capacitors and resistors and just connect the batteries together. However, they help filter electrical spikes, making the output smoother [^smooth].
2025-02-16 13:52:06 +01:00
2025-03-01 16:38:05 +01:00
[^negative-volt]: Some chips, mostly op-amps, require a negative voltage, which does not come out of a battery by default.
2025-02-16 13:52:06 +01:00
2025-03-01 16:38:05 +01:00
[^18V]: You can also get 18V: treat the -9V pin as 0V, making the 9V pin 18V
2025-02-16 13:52:06 +01:00
2025-03-01 16:38:05 +01:00
![Since this power supply will be used a lot, I made it a bit more permanent by glueing it to a piece of wood.](/recipes/power-supply/photo.jpeg)
2025-02-16 13:52:06 +01:00
2025-02-16 14:50:06 +01:00
2025-03-01 16:38:05 +01:00
[^smooth]: ![The capacitor can filter electrical spikes for a more smooth voltage input](/recipes/power-supply/filtering.png){ height=30px }
2025-02-16 14:50:06 +01:00
2025-03-01 16:38:05 +01:00
#### Testing
Before plugging in the battery's, check your connections[^continuity]. When the batteries are plugged in, your pins should read -9V and +9V[^volt-meter].
2025-02-16 14:50:06 +01:00
[^volt-meter]: Test this by using the volt meter on the multimeter. One probe touches your ground pin, the other the pin you'd like to test.
[^continuity]: You can test this using the *continuity* mode on your multi meter, which beeps if electricity can pass trough.
#### Upgrade
2025-03-01 16:38:05 +01:00
An upgrade that could be useful is adding a power switch and/or LED to show if the power supply is active.