470uF 10V Electrolytic Capacitor 5x10mm

470uF 10V Electrolytic Capacitor 5x10mm

Rs. 3.00
Sale price  Rs. 3.00 Regular price 
Skip to product information
470uF 10V Electrolytic Capacitor 5x10mm

470uF 10V Electrolytic Capacitor 5x10mm

Rs. 3.00
Sale price  Rs. 3.00 Regular price 

Description

The 470uF/10V electrolytic capacitor with dimensions of 5x10mm is a versatile component used to store and release electrical energy in a wide range of electronic circuits. Its small size and significant capacitance make it a vital component for various applications, offering reliable performance in both consumer and industrial electronics.

Features:

Moderate Capacitance: With a capacitance of 470uF, this capacitor provides adequate energy storage for many applications, ensuring smooth power supply and signal processing.

Low Voltage Rating: Rated at 10V, it is ideal for low-voltage applications, ensuring compatibility and safety in numerous electronic circuits.

Compact Form Factor: Measuring 5x10mm, this capacitor is designed to fit into tight spaces, making it suitable for modern, miniaturized electronic devices.

Durable Construction: Made with high-quality materials, it offers a long operational lifespan, ensuring the reliability and longevity of electronic systems.

Wide Operating Temperature Range: Engineered to function across a broad temperature range, it performs consistently in various environmental conditions.

Standard Lead Spacing: The 2.5mm lead spacing facilitates easy and secure installation on PCBs, enhancing its utility in diverse electronic projects.

Applications:

Power Supplies: Used for filtering and smoothing voltage fluctuations, ensuring stable DC output in power supply circuits.

Audio Equipment: Helps in decoupling and signal filtering in audio amplifiers and other sound equipment, improving audio quality.

Technical Details

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

Pinout Diagram

capacitor-pinout-diagram



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