

A supply module is an essential component in any electronic circuit, providing the necessary electrical energy to power various devices and components. It can come in various forms, such as batteries, AC-to-DC power supplies, DC-to-DC converters, or generators. Common applications include powering circuits on breadboards, providing energy for portable devices, and as a power source for microcontroller platforms like the Arduino UNO.








| Parameter | Description | Values/Range |
|---|---|---|
| Input Voltage | The voltage range the supply can accept. | e.g., 100-240V AC |
| Output Voltage | The regulated voltage the supply provides. | e.g., 5V DC |
| Output Current | Maximum current the supply can provide. | e.g., 1A |
| Power Rating | Total power output capability. | e.g., 5W |
| Efficiency | Percentage of input power converted to output. | e.g., 85% |
| Operating Temperature | Temperature range for normal operation. | e.g., 0-40°C |
| Pin Number | Name | Description |
|---|---|---|
| 1 | VOUT | Regulated output voltage |
| 2 | GND | Ground, reference point for the circuit |
| 3 | VIN | Input voltage (unregulated) |
| 4 | EN | Enable pin, active high to enable output |
Q: Can I use a 9V battery with this supply module? A: Only if the input voltage range supports it. Check the technical specifications.
Q: How do I know if the supply is working? A: Measure the output voltage with a multimeter to ensure it's within the specified range.
Q: What should I do if the supply is making a noise? A: Some noise can be normal, but excessive noise may indicate an overload or a failing component.
// Example code to enable the supply module connected to an Arduino UNO
const int enablePin = 7; // Connect the EN pin of the supply to digital pin 7
void setup() {
pinMode(enablePin, OUTPUT); // Set the enable pin as an output
digitalWrite(enablePin, HIGH); // Set the enable pin high to turn on the supply
}
void loop() {
// Your code here to interact with the circuit powered by the supply
}
Remember to ensure that the supply's output voltage is compatible with the Arduino UNO's voltage requirements. The UNO typically operates at 5V, so a supply outputting more than this could damage the board.