The Power Supply 24V is a device designed to provide a stable 24-volt DC power output. It is commonly used to power various electronic circuits and devices, ensuring they receive a consistent and reliable voltage. This power supply is essential in applications where precise voltage regulation is critical, such as in industrial automation, robotics, and laboratory equipment.
Parameter | Value |
---|---|
Output Voltage | 24V DC |
Output Current | Up to 5A |
Input Voltage | 100-240V AC |
Frequency | 50/60Hz |
Power Rating | 120W |
Efficiency | ≥ 85% |
Ripple & Noise | ≤ 120mVp-p |
Operating Temperature | -10°C to +60°C |
Storage Temperature | -20°C to +85°C |
Dimensions | 150mm x 90mm x 40mm |
Weight | 500g |
Pin No. | Name | Description |
---|---|---|
1 | AC-L | AC Live input (100-240V AC) |
2 | AC-N | AC Neutral input (100-240V AC) |
3 | GND | Ground |
4 | +V | +24V DC output |
5 | -V | 0V (Ground) DC output |
Connect the AC Input:
Connect the DC Output:
Power On:
No Output Voltage:
Output Voltage Fluctuations:
Power Supply Overheating:
Q1: Can I use this power supply with an Arduino UNO?
Q2: What should I do if the power supply is not working?
Q3: Can I use this power supply in a high-temperature environment?
Below is an example code to use the 24V power supply with an Arduino UNO, using an LM7805 voltage regulator to step down the voltage to 5V.
// Example code to blink an LED using Arduino UNO powered by a 24V power supply
// through an LM7805 voltage regulator
const int ledPin = 13; // Pin number for the LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Note: Ensure the LM7805 voltage regulator is properly connected to step down the 24V to 5V before powering the Arduino UNO.
This documentation provides a comprehensive guide to using the Power Supply 24V, covering technical specifications, usage instructions, troubleshooting, and example code for integration with an Arduino UNO.