Bridge Rectifier (Pack of 5)
Bridge Rectifier (Pack of 5)
The Bridge Rectifier (Pack of 5) is a collection of five bridge rectifier circuits, each designed to convert Alternating Current (AC) voltage to Direct Current (DC) voltage. This component is a essential building block in many IoT devices, power supplies, and AC-DC converters.
The primary function of a bridge rectifier is to convert AC voltage from a power source, such as a wall adapter or a transformer, to DC voltage that can be used to power electronic devices. The bridge rectifier achieves this by utilizing four diodes arranged in a diamond configuration, which allows it to rectify both the positive and negative cycles of the AC waveform.
50-250V AC
12V DC (nominal)
1A (max)
1.1V (max)
50A (peak)
-40C to 150C
-40C to 150C
10mm x 15mm x 5mm (L x W x H)
IoT devices
Power supplies
AC-DC converters
Motor control systems
Audio equipment
Medical devices
Ensure proper heat dissipation to prevent overheating.
Use appropriate fusing and protection devices to prevent overcurrent and overvoltage conditions.
Follow proper soldering techniques to prevent damage to the component.
Bridge Rectifier (Pack of 5) DocumentationComponent OverviewThe Bridge Rectifier is a type of rectifier circuit that converts Alternating Current (AC) to Direct Current (DC) using four diodes in a diamond configuration. This pack of 5 bridge rectifiers is suitable for various IoT projects, offering a convenient and efficient way to power DC devices from AC sources.Technical SpecificationsInput Voltage: 25V AC
Output Voltage: 12V DC
Current Rating: 1A
Package: 5 Pieces
Operating Temperature: -40C to 125CPinoutThe bridge rectifier has four terminals:Input AC terminals: A and C
Output DC terminals: + (Positive) and - (Negative)Code Examples### Example 1: Powering an Arduino Board with a Bridge RectifierIn this example, we'll use the bridge rectifier to power an Arduino board from a 12V AC adapter.```c
const int ledPin = 13; // Built-in LED on Arduino Unovoid setup() {
pinMode(ledPin, OUTPUT);
}void loop() {
digitalWrite(ledPin, HIGH);
delay(500);
digitalWrite(ledPin, LOW);
delay(500);
}
```Connect the bridge rectifier to the Arduino board as follows:Bridge Rectifier Output + (Positive) Arduino Vin
Bridge Rectifier Output - (Negative) Arduino GND
12V AC adapter Bridge Rectifier Input AC terminals A and C### Example 2: Powering a DC Motor with a Bridge Rectifier and MOSFET DriverIn this example, we'll use the bridge rectifier to power a DC motor and control its speed using a MOSFET driver.```c
const int motorPin = 9; // Connect to MOSFET driver
const int speedPin = A0; // Analog input for speed controlvoid setup() {
pinMode(motorPin, OUTPUT);
pinMode(speedPin, INPUT);
}void loop() {
int speedValue = analogRead(speedPin);
int motorSpeed = map(speedValue, 0, 1023, 0, 255);
analogWrite(motorPin, motorSpeed);
}
```Connect the bridge rectifier, MOSFET driver, and DC motor as follows:Bridge Rectifier Output + (Positive) MOSFET driver Vin
Bridge Rectifier Output - (Negative) MOSFET driver GND
12V AC adapter Bridge Rectifier Input AC terminals A and C
MOSFET driver DC motorNote: These examples are for illustration purposes only. Ensure proper component selection, voltage and current ratings, and safety precautions when working with electrical circuits.By using this pack of 5 bridge rectifiers, you can efficiently power your IoT projects from AC sources, making it an ideal component for various applications.