The LM100-23B12R2 is an AC/DC power converter manufactured by Mornsun. This component is designed to transform alternating current (AC) to direct current (DC) with a specific output voltage and current rating. It is suitable for a wide range of electronic applications, including industrial automation, instrumentation, and consumer electronics.
Parameter | Value |
---|---|
Input Voltage Range | 85-264V AC / 120-370V DC |
Output Voltage | 12V DC |
Output Current | 8.33A |
Output Power | 100W |
Efficiency | 91% |
Operating Temperature | -40°C to +70°C |
Storage Temperature | -40°C to +85°C |
Isolation Voltage | 3000V AC |
Dimensions | 127.0 x 76.2 x 30.0 mm |
Weight | 300g |
Pin Number | Pin Name | Description |
---|---|---|
1 | AC(L) | AC Line Input |
2 | AC(N) | AC Neutral Input |
3 | +Vout | Positive DC Output |
4 | -Vout | Negative DC Output (Ground) |
5 | FG | Frame Ground (Chassis Ground) |
Connection to AC Source:
DC Output Connection:
Frame Ground:
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
If you are using the LM100-23B12R2 to power an Arduino UNO, here is a simple example code to blink an LED:
// Pin 13 has an LED connected on most Arduino boards.
const int ledPin = 13;
// The setup function runs once when you press reset or power the board.
void setup() {
// Initialize the digital pin as an output.
pinMode(ledPin, OUTPUT);
}
// The loop function runs over and over again forever.
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on (HIGH is the voltage level).
delay(1000); // Wait for a second.
digitalWrite(ledPin, LOW); // Turn the LED off by making the voltage LOW.
delay(1000); // Wait for a second.
}
This code will blink the LED connected to pin 13 of the Arduino UNO, powered by the LM100-23B12R2 AC/DC converter.
This documentation provides a comprehensive overview of the LM100-23B12R2 AC/DC power converter, including its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you effectively utilize this component in your electronic projects.