10uF 25V Electrolytic Capacitor 4x10mm Lead space 2.5mm

10uF 25V Electrolytic Capacitor 4x10mm Lead space 2.5mm

Rs. 3.00
Sale price  Rs. 3.00 Regular price 
Skip to product information
10uF 25V Electrolytic Capacitor 4x10mm Lead space 2.5mm

10uF 25V Electrolytic Capacitor 4x10mm Lead space 2.5mm

Rs. 3.00
Sale price  Rs. 3.00 Regular price 

Description

The 10uF 25V electrolytic capacitor, measuring 4x10mm with a lead spacing of 2.5mm, is a reliable component widely used in electronic circuits. It performs essential functions such as filtering, decoupling, and coupling signals, ensuring stable operation in your projects. This 10uf 25v capacitor combines compact size with dependable performance, making it an ideal choice for various applications.

Characteristics:

Polarity: Like all electrolytic capacitors, this 10uf capacitor 25v is polarized. The positive lead is typically longer, while the negative lead is marked with a stripe or a minus sign for easy identification.

Voltage Rating: With a 25V rating, the capacitor can safely handle voltages up to 25 volts. It is important to avoid exceeding this limit to prevent failure.

Tolerance: Electrolytic capacitors generally offer a tolerance range of ±20%, providing flexibility in circuit designs.

Temperature Range: This component operates reliably within a temperature range of -40°C to +85°C, and in some high-temperature models, up to +105°C.

Applications:

Power Supply Filtering: Ideal for smoothing fluctuations in power supply voltages.

Decoupling: Effectively reduces noise from power lines in both analog and digital circuits.

Applications

  • Power Supplies
  • Audio Equipment
  • Electronic Ballasts
  • Motor Starters
  • Frequency Filtering
  • Voltage Regulators
  • DC-DC Converters
  • Automotive Electronics
  • Switching Power Supplies
  • Industrial Equipment

Technical Details

  • Structure: Fixed Capacitor
  • Type: Aluminum Electrolytic Capacitor, radial type
  • Material: Plastic + Metal
  • Capacitance Value: 10uF
  • Voltage: 25V
  • Mounting Type: Through Hole
  • Operating Temperature (°C): -40 to 105
  • Tolerance on Capacitance: ±20%

Pinout Diagram

capacitor-pinout-diagram

Additionally, this 10uF 25V capacitor integrates seamlessly into Arduino projects. It is often used in DIY electronics where stable performance and compact size are critical.

Integration with Arduino

Sample Code

int Sensor = A0; //Sensor pin
float SenVal = 0; //Float for sensor readings
int Supply = 8; //Supply Pin
void setup() {
Serial.begin(115200);
pinMode(Supply, OUTPUT); //Supply pin is an output
digitalWrite(Supply, LOW); //Supply is initially off
}
void loop() {
SenVal = analogRead(Sensor); //Sample and print (will be 0.0 as supply is off)
Serial.println(SenVal);
digitalWrite(Supply, HIGH); //Supply 5V step
while(1){
SenVal = analogRead(Sensor); //Sample and print until Capacitor charged to 5V
Serial.println(SenVal);
delay(1);
if (SenVal > 1020){ //Stop and switch off supply (capacitor will charge down)
while(1){
digitalWrite(Supply, LOW);
}
}
}
}

You may also like