Chat

Welcome to Flux

Treat Flux like your intern. Tell it what you'd like to build and it'll get to work. You can also ask it questions, brainstorm ideas, and teach it your preferences. Learn More

Explain project
Write a project description
Find schematic issues
Create a test plan
Simulate a circuit
Operating conditions
Part Specifications
Verify Part Details
Recommend similar parts

Ready.


explain this project.

@copilot explain this project.
1y
The project you've described is centered around an LED layout, specifically using an LED package in the 1206 footprint. The 1206 size refers to the dimensions of the component being 3.2mm x 1.6mm $120$ mils x $60$ mils), a standard size for surface-mount technology (SMT) components. This kind of project is typically focused on implementing LED indication features within an electronic device, using discrete LEDs for various signaling purposes such as power status, connectivity status, or other operational indications.
Details Based on Your Description:
  • Designator Prefix, LED: 0 - This suggests that the LED components within this project should be labeled with prefixes starting from "LED0," incrementing for each additional LED used in the design.
  • Manufacturer Name,: 1 - It seems there's an intention to specify a manufacturer for the parts, which would likely be essential for ensuring component quality and compatibility. However, the actual name of the manufacturer hasn't been provided in the provided details.
Project Components:
There are two designators mentioned, "K" and "A." Both are marked with the following traits:
  • Pins: 1 - Each has a single pin, which is atypical for standard LEDs that usually have two pins (an anode and a cathode). This description might be incomplete or could potentially be referring to a concept or part of the LED not usually focused on in typical schematic descriptions.
  • Element Properties: - Listed as having unspecified terminal types beyond being passive and with unspecified pin types. The description lacks the specific details usually required to fully understand how these components are supposed to function within the circuit.
  • Symbol Pin Position and Terminal Order: - Mentioned, but no detailed information is provided. In usual schematic designs, the specific positioning of pins and their order is crucial for understanding how to place and connect components within the circuit.
Current Status:
  • No electrical connections have been made in this project yet. This indicates the design is at a very early stage, with only components identified but not yet arranged or interconnected in any schematic form.
Assumptions and Next Steps:
Given the unusual description of the "K" and "A" components with only one pin and without clear functionalities, it's necessary to clarify:
  • The actual nature of these components: Are "K" and "A" supposed to represent the anode and cathode sides of a single LED, or are they some form of single-pin components intended for another purpose?
  • How you plan to integrate LEDs into your project: Specifically, the arrangement of LEDs (series, parallel), the types of LEDs (color, power rating), and any control or driving mechanisms intended (current limiting resistors, LED drivers).
  • The details of the electrical connections and interactions you envision between components.
To proceed with crafting a useful schematic and layout in Flux for your LED indication project, more detailed specifications about the intended use of the components, especially regarding how "K" and "A" are conceptualized, would be immensely helpful.
1y
Someone is typing...
Me podrias diseñar un circuito que alimente a un Foco de 120 VCA, 60 Hz, con la...

@copilot Me podrias diseñar un circuito que alimente a un Foco de 120 VCA, 60 Hz, con la siguiente modulación de
onda cuadrada de 1 Hz (vea que existen dos tipos de modulación aquí), emplear un control por
potenciómetro que al 50 % de su posición la onda se vea como en la imagen y que sea
proporcional al 100% se vea totalmente una señal senoidal y si la posición es 0 se vea apagado (Emplear un timer 555 o un microcontrolador, así como un optoacoplador para aislar etapas
de control y potencia
1y
Diseño del Circuito de Control de Foco Descripción del Circuito:
El circuito diseñado controlará un foco de 120 VCA, 60 Hz, con modulación por ancho de pulso (PWM) utilizando un generador de señal cuadrada implementado con un Timer 555 o un microcontrolador. La modulación será controlada por un potenciómetro, permitiendo variar entre una señal cuadrada del 50% al 100% de la frecuencia de 1 Hz. Se utilizará un optoacoplador para aislar la etapa de control de la etapa de potencia.
Componentes Necesarios:
  1. Microcontrolador o Timer 555
  2. Optoacoplador
  3. Potenciómetro (10kΩ)
  4. Transistor de potencia o Triac
  5. Transformador de 120 V a 12 V (para alimentación del circuito de control)
  6. Resistencias y capacitores de desacoplo
Asumptions:
  • Utilizaremos un microcontrolador ATmega328P.
  • Un optoacoplador 4N35.
  • Un Triac BT136.
  • Fuente de alimentación de 5V para el microcontrolador.
Esquema del Circuito:
  1. Generador de Señales PWM:
    • Utilizaremos el ATmega328P para generar las señales PWM. El ciclo de trabajo de la señal PWM será controlado por el potenciómetro.
  2. Aislamiento con Optoacoplador:
    • Utilizaremos el optoacoplador 4N35 para aislar la etapa de control de la etapa de potencia.
  3. Control del Triac:
    • Utilizaremos un Triac BT136 para controlar el foco de 120 VCA.
Conexiones del Circuito:
  1. Potenciómetro a Microcontrolador:
    • Conecta el pin central del potenciómetro al pin A0 (ADC)(ADC) del ATmega328P.
    • Conecta los extremos del potenciómetro a Vcc y GND.
  2. Salida PWM del Microcontrolador (D9)(D9):
    • Conecta el pin D9 del ATmega328P a la entrada del optoacoplador (4N35:Pin1)(4N35:Pin 1).
  3. Optoacoplador a Triac:
    • Conecta la salida del optoacoplador (4N35:Pin4)(4N35:Pin 4) a la puerta del Triac (BT136:Gate)(BT136:Gate) con una resistencia de 1kΩ en serie.
  4. Triac a Foco y 120 VCA:
    • Conecta el terminal MT2 del Triac a uno de los terminales del foco.
    • Conecta el terminal MT1 del Triac a la línea de alimentación de 120 VCA.
    • Conecta el otro terminal del foco a la línea neutral de 120 VCA.
Código para ATmega328P usando Arduino:

Cpp


#define POT_PIN A0 // Pin del Potenciómetro
#define PWM_PIN 9  // Pin PWM $$(D9)$$
int potValue = 0;

void setup() {
  pinMode(PWM_PIN, OUTPUT);
  // Configuramos el Timer1 para PWM configurado a 1Hz (no puede ser tan bajo por hardware)
  // Pero se simula con delay en el loop
}

void loop() {
  potValue = analogRead(POT_PIN); // Leer valor del potenciómetro
  int dutyCycle = map(potValue, 0, 1023, 0, 255); // Mapear valor del ADC a PWM
  
  analogWrite(PWM_PIN, dutyCycle); // Ajustar ciclo de trabajo del PWM

  delay(100); // Simula modulación de 1 Hz
}
Diagrama de Conexión:
  • Conecta el pin A0 del ATmega328P a la terminal central del potenciómetro.
  • Conecta el pin D9 del ATmega328P a la base del optoacoplador (4N35:Pin1)(4N35:Pin 1).
  • Conecta el colector del optoacoplador (4N35:Pin4)(4N35:Pin 4) al Gate del Triac con una resistencia de 1kΩ.
  • Conecta el terminal MT1 del Triac a una línea de 120 VCA.
  • Conecta el terminal MT2 del Triac a uno de los terminales del foco.
  • Conecta el otro terminal del foco a la línea neutra de 120 VCA.
Este circuito debería permitir el control del foco conforme a la posición del potenciómetro, variando desde apagado a encendido total y modulando una señal cuadrada en medio.
1y
Someone is typing...
6
para que sirve?

@copilot para que sirve?
1y
El proyecto que has compartido parece ser un esquema muy básico para una indicación LED discreta utilizando un LED de tamaño 1206 (esto se refiere a las dimensiones físicas del LED, en este caso, 3.2 mm x 1.6 mm). El proyecto actualmente incluye dos componentes designados como K y A, ambos con la designación de prefijo P indicando que son pasivos, y cada uno con un solo pin. Aunque no se muestran las conexiones eléctricas, el propósito general de este esquema sería controlar un LED para aplicaciones de señalización, como indicar el estado de encendido, procesos de operación, alertas, entre otros.
Para hacer este proyecto funcional, típicamente necesitarías conectar el LED a una fuente de alimentación a través de una resistencia limitadora de corriente para evitar quemar el LED. Sin embargo, en la descripción proporcionada, no se especifica cuál de los designadores (K o A) representa al LED o a la resistencia limitadora, ni se proporcionan detalles de la fuente de alimentación o los valores para los componentes.
Para avanzar, asumiré que deseas conectar un LED en serie con una resistencia a una fuente de alimentación típica de 5V. Aquí te dejo un esquema básico de cómo podrías hacerlo:
  • K representará al LED.
  • A será la resistencia limitadora de corriente.
Siguiendo esta asignación, las conexiones se realizarían de la siguiente manera:
  1. Conecta K:1 (LED) al positivo de la fuente de alimentación.
  2. Conecta A:1 (resistencia) a K:1.
  3. Conecta el otro extremo de A al negativo de la fuente de alimentación.
Ten en cuenta que necesitas calcular el valor de la resistencia ($A$) basado en las especificaciones del LED y la fuente de alimentación que planeas usar. Una formula útil para esto es:
R=VfuenteVLEDILEDR = \frac{V_{fuente} - V_{LED}}{I_{LED}}
  • $V_{fuente}$ es el voltaje de tu fuente de alimentación.
  • $V_{LED}$ es el voltaje de caída del LED.
  • $I_{LED}$ es la corriente deseada a través del LED, generalmente proporcionada por el fabricante.
Por ejemplo, para un LED con una caída de tensión de 2V operando a 20mA con una fuente de alimentación de 5V, la resistencia necesaria sería:
R=5V2V20mA=150ΩR = \frac{5V - 2V}{20mA} = 150\Omega
Si el valor de $V_{LED}$ o $I_{LED}$ es diferente, ajusta la fórmula según sea necesario.
1y
Basándome en la descripción del proyecto que proporcionaste, parece que estás trabajando en un esquemático que incluye terminales pasivas denominadas "K" y "A", ambas con un único pin. Estos componentes están etiquetados con el prefijo de designación "P", lo que generalmente se utiliza para componentes pasivos. Sin embargo, dado el contexto de tu proyecto de "LED-1206-Template" y la nomenclatura de las designaciones ("K" y "A"), puedo hacer algunas suposiciones y ofrecer una explicación general de su posible función:
  • K (Pines: 1): Esta terminal podría representar el cátodo de un LED en el empaquetado 1206 (3216 métrico). "K" suele ser la designación para el cátodo en diodos LEDs, donde "K" viene del término alemán "Kathode". El cátodo es la terminal por la cual el flujo de corriente sale del diodo LED (en la dirección opuesta de la flecha simbólica dentro del símbolo del diodo).
  • A (Pines: 1): Esta terminal podría representar el ánodo de un LED en el empaquetado 1206 (3216 métrico). "A" se refiere comúnmente al ánodo, que es la terminal por la cual la corriente entra al diodo LED. En muchos casos, "A" puede ser utilizado como abreviatura para "Anode".
Por lo tanto, la función principal de estas terminales "K" y "A" en tu proyecto podría ser servir como puntos de conexión para el cátodo y ánodo de un LED, respectivamente. Esto permitiría integrar un LED a tu circuito, donde podrías controlar la indicación lumínica por medio de la corriente que fluye a través del LED (desde el ánodo hacia el cátodo).
Para cualquier proyecto que implique LEDs, siempre es importante considerar el uso de una resistencia en serie con el LED para limitar la corriente a un valor seguro tanto para el LED como para la fuente de alimentación, evitando así el daño al componente por sobrecorriente.
Si estas asunciones no se alinean con lo que tenías en mente o si hay detalles adicionales que puedas proporcionar, no dudes en corregirme o enriquecer la descripción para una asesoría más precisa.
1y
cual es la funcion de esta terminal?
1y
Someone is typing...
5
I want to create a DC-DC converter

@copilot I want to create a DC-DC converter
1y
Creating a DC-DC converter involves several considerations including the design requirements such as input voltage, output voltage, output current, efficiency, and size constraints. There are various types of DC-DC converters, such as buck, boost, buck-boost, and more, each suitable for different applications. Assuming you're looking for a general purpose and commonly used converter, let’s design a simple buck (step-down) converter.
Here are the basic components you will need:
  • Switch (MOSFET or similar): Acts as a switch to regulate voltage by turning on and off at a high frequency.
  • Diode: Provides a path for the current when the switch is off.
  • Inductor: Stores energy when the switch is on and releases it when the switch is off.
  • Capacitor: Filters out voltage ripple.
  • Feedback Circuit and Voltage Reference: To regulate the output voltage to your desired level.
  • PWM Controller: To control the switching action of the MOSFET.
Example Schematic Connections:
  • Switch (Q1):
    • Drain connected to the input voltage source.
    • Source connected to the inductor (L1:1) and to the diode's cathode.
    • Gate connected to PWM controller's output (for switching control).
  • Diode (D1):
    • Anode connected to ground.
    • Cathode connected to L1:1 and Q1:Source.
  • Inductor (L1):
    • L1:1 connected to Q1:Source, D1:Cathode.
    • L1:2 connected to the output capacitor (C1:1) and load.
  • Capacitor (C1):
    • C1:1 connected to L1:2 and load.
    • C1:2 connected to ground.
  • Feedback and Control:
    • The output voltage is sensed and fed back to the PWM controller for regulating the output voltage by adjusting the duty cycle of the switch.
Notes:
  • The component values (such as for the inductor and capacitor) and the choice of PWM controller need to be chosen based on your specific requirements (input voltage, output voltage, output current). The PWM controller should support the switching frequency you wish to use.
  • For the feedback circuit, you could use a simple voltage divider to feed a fraction of the output voltage back into the PWM controller if it has an internal voltage reference and feedback input. Otherwise, an external voltage reference and op-amp may be needed for more precise control.
  • Ensure heat sinks and proper thermal management techniques are considered for components like the switch and inductor if high power levels are involved.
Given your project description, it seems your circuit previously focused on an LED indication system. Transitioning to designing a DC-DC converter represents a more complex control system that involves careful selection of components and understanding the power requirements. If you have specific requirements (input/output voltages, current, size limitations) or need help with a specific part of your design, please provide more details so I can assist you further.
1y
Someone is typing...
3
quiero ver si Me podrias diseñar un circuito que alimente a un Foco de 120 VCA,...

@copilot quiero ver si Me podrias diseñar un circuito que alimente a un Foco de 120 VCA, 60 Hz, con la siguiente modulación de onda cuadrada de 1 Hz (vea que existen dos tipos de modulación aquí), emplear un control por potenciómetro que al 50 % de su posición la onda se vea como en la imagen y que sea proporcional al 100% se vea totalmente una señal senoidal y si la posición es 0 se vea apagado (Emplear un timer 555 o un microcontrolador, así como un optoacoplador para aislar etapas que lo pueda visualizar
1y
Claro, puedo asistirte con eso. Para generar una onda cuadrada modulada por un potenciómetro y proporcionar aislamiento con un optoacoplador, usaremos un temporizador 555 junto con un optoacoplador para controlar una lámpara de 120V AC.
Para esta descripción asumo lo siguiente:
  • El temporizador 555 se usa en configuración astable para generar la onda cuadrada PWM.
  • El potenciómetro ajusta el ciclo de trabajo del 555.
  • Usaremos un MOSFET en combinación con un optoacoplador para manejar el foco de 120V AC.
Esquemático: Componentes:
  • 555 Timer (U1)
  • Potenciómetro (R1): Ajusta la modulación
  • Optoacoplador (U2): Aísla las etapas de control y potencia (como el PC817)
  • MOSFET (Q1): Controla la carga de alta potencia
  • Diode bridge (DB1): Rectificador para AC a DC
  • Lámpara (L1): 120V AC, 60 Hz
Conexiones:
  1. 555 Timer (Modo Astable)
    • Conecta R1 (potenciómetro) a VCC y a las patas 7 y 6 del 555.
    • Conecta un capacitor C1 entre la pata 6 del 555 y tierra.
    • Conecta un capacitor C2 de filtro entre la pata 5 del 555 y tierra.
    • Conecta una resistencia R2 entre la pata 7 del 555 y tierra.
    • Conecta patas 2 y 6 del 555 juntas.
    • Conecta la pata 4 del 555 a VCC.
    • Conecta la pata 1 del 555 a tierra.
    • Conecta la salida (pata 3) del 555 al ánodo del LED en el optoacoplador U2.
  2. Optoacoplador
    • Conecta el cátodo del LED en U2 a tierra.
    • Conecta el colector de U2 al gate del MOSFET Q1 (usa una resistencia de pull-down si es necesario).
    • Conecta el emisor de U2 a tierra.
  3. MOSFET Control
    • Conecta el drain del MOSFET Q1 a uno de los terminales de la lámpara (L1).
    • Conecta la fuente del MOSFET a GND.
    • Conecta el terminal restante de la lámpara a la salida del rectificador de diodos DB1.
  4. Rectificador y Lámpara
    • Conecta los terminales de entrada del rectificador DB1 a los terminales de AC de la red.
    • Conecta la salida positiva del rectificador DB1 al otro terminal de la lámpara.
Resumen de Conexiones
  • 555 Timer
    • Conecta R1:1 a VCC
    • Conecta R1:2 a GND
    • Conecta Potenciómetro (R1):1 a U1:7 y U1:6
    • Conecta Capacitor (C1):1 a U1:6 y C1:2 a GND
    • Conecta Capacitor (C2):1 a U1:5 y C2:2 a GND
    • Conecta Resistor (R2):1 a U1:7 y R2:2 a GND
    • Conecta U1:2 a U1:6
    • Conecta U1:4 a VCC
    • Conecta U1:1 a GND
    • Conecta U1:3 a LED:anodo en Optoacoplador (U2)
  • Optoacoplador y MOSFET
    • Conecta LED:cátodo en U2 a GND
    • Conecta Colector de U2 a Gate de MOSFET (Q1)
    • Conecta Emisor de U2 a GND
  • MOSFET y Lámpara
    • Conecta Drain de Q1 a un terminal de L1
    • Conecta Fuente de Q1 a GND
    • Conecta otro terminal de L1 a salida positiva de rectificador (DB1)
  • Rectificador
    • Conecta entrada AC de DB1 a red de 120V AC
    • Conecta salida positiva de DB1 a L1:Terminal1
    • Conecta salida negativa de DB1 a L1:Terminal2 (donde se conecta al MOSFET)
Esta aproximación debería proporcionarte control de encendido/apagado y modulación de la lámpara de 120V según la posición del potenciómetro. Puedes visualizar esto en Flux y agregar los componentes mencionados de acuerdo a las conexiones descritas. Si necesitas detalles más específicos, no dudes en dejármelo saber.
1y
Someone is typing...
7
Necesito diagramar un convertidor multinivel de 3 niveles y tambien un converti...

@copilot Necesito diagramar un convertidor multinivel de 3 niveles y tambien un convertidor de 5 niveles
1y
Para realizar la diagramación de convertidores multinivel de 3 y 5 niveles, podemos seguir algunos pasos básicos y definir los componentes necesarios. Voy a describir los principios básicos y luego te proporcionaré las conexiones específicas.
Convertidor Multinivel de 3 Niveles
Un convertidor multinivel de 3 niveles puede ser implementado usando topologías como el tipo NPC (Neutral Point Clamped). En esta topología, utilizaremos transistores y diodos para controlar las corrientes de salida. Aquí tienes los componentes básicos y conexiones:
  1. Componentes:
    • 2 Transistores (T1, T2)
    • 2 Diodos (D1, D2)
    • Capacitor Divisor de Tensión (C1, C2)
    • Fuente de Alimentación
    • Carga (R_load)
  2. Conexiones:
    • Connect positive terminal of power source to the collector of T1.
    • Connect emitter of T1 to the positive terminal of C1.
    • Connect negative terminal of C1 to the positive terminal of C2.
    • Connect negative terminal of C2 to the emitter of T2.
    • Connect collector of T2 to ground.
    • Connect D1 in parallel with T1.
    • Connect D2 in parallel with T2.
    • Connect the midpoint between C1 and C2 to R_load.
    • Connect the other end of R_load to ground.
Convertidor Multinivel de 5 Niveles
Para el convertidor de 5 niveles, podemos usar una combinación más compleja de transistores y capacitores. La topología más común es también el tipo NPC modificado.
  1. Componentes:
    • 4 Transistores (T1, T2, T3, T4)
    • 4 Diodos (D1, D2, D3, D4)
    • 4 Capacitores (C1, C2, C3, C4)
    • Fuente de Alimentación
    • Carga (R_load)
  2. Conexiones:
    • Connect positive terminal of power source to the collector of T1.
    • Connect emitter of T1 to the positive terminal of C1.
    • Connect negative terminal of C1 to the positive terminal of C2.
    • Connect negative terminal of C2 to the positive terminal of C3.
    • Connect negative terminal of C3 to the positive terminal of C4.
    • Connect negative terminal of C4 to the emitter of T4.
    • Connect collector of T4 to ground.
    • Connect D1 in parallel with T1.
    • Connect D2 in parallel with T2.
    • Connect D3 in parallel with T3.
    • Connect D4 in parallel with T4.
    • Connect the midpoint between C2 and C3 to R_load.
    • Connect the other end of R_load to ground.
Paso Siguiente
Voy a crear los esquemáticos en Flux para estos convertidores. ¿Te gustaría que comencemos con el de 3 niveles o el de 5 niveles primero?
1y
Someone is typing...
8
K
A


  • Ground
    A common return path for electric current. Commonly known as ground.
  • Net Portal
    Wirelessly connects nets on schematic. Used to organize schematics and separate functional blocks. To wirelessly connect net portals, give them same designator. #portal
  • Power Net Portal
    Wirelessly connects power nets on schematic. Identical to the net portal, but with a power symbol. Used to organize schematics and separate functional blocks. To wirelessly connect power net portals, give them the same designator. #portal #power
  • Generic Resistor
    A generic fixed resistor for rapid developing circuit topology. Save precious design time by seamlessly add more information to this part (value, footprint, etc.) as it becomes available. Standard resistor values: 1.0Ω 10Ω 100Ω 1.0kΩ 10kΩ 100kΩ 1.0MΩ 1.1Ω 11Ω 110Ω 1.1kΩ 11kΩ 110kΩ 1.1MΩ 1.2Ω 12Ω 120Ω 1.2kΩ 12kΩ 120kΩ 1.2MΩ 1.3Ω 13Ω 130Ω 1.3kΩ 13kΩ 130kΩ 1.3MΩ 1.5Ω 15Ω 150Ω 1.5kΩ 15kΩ 150kΩ 1.5MΩ 1.6Ω 16Ω 160Ω 1.6kΩ 16kΩ 160kΩ 1.6MΩ 1.8Ω 18Ω 180Ω 1.8KΩ 18kΩ 180kΩ 1.8MΩ 2.0Ω 20Ω 200Ω 2.0kΩ 20kΩ 200kΩ 2.0MΩ 2.2Ω 22Ω 220Ω 2.2kΩ 22kΩ 220kΩ 2.2MΩ 2.4Ω 24Ω 240Ω 2.4kΩ 24kΩ 240kΩ 2.4MΩ 2.7Ω 27Ω 270Ω 2.7kΩ 27kΩ 270kΩ 2.7MΩ 3.0Ω 30Ω 300Ω 3.0KΩ 30KΩ 300KΩ 3.0MΩ 3.3Ω 33Ω 330Ω 3.3kΩ 33kΩ 330kΩ 3.3MΩ 3.6Ω 36Ω 360Ω 3.6kΩ 36kΩ 360kΩ 3.6MΩ 3.9Ω 39Ω 390Ω 3.9kΩ 39kΩ 390kΩ 3.9MΩ 4.3Ω 43Ω 430Ω 4.3kΩ 43KΩ 430KΩ 4.3MΩ 4.7Ω 47Ω 470Ω 4.7kΩ 47kΩ 470kΩ 4.7MΩ 5.1Ω 51Ω 510Ω 5.1kΩ 51kΩ 510kΩ 5.1MΩ 5.6Ω 56Ω 560Ω 5.6kΩ 56kΩ 560kΩ 5.6MΩ 6.2Ω 62Ω 620Ω 6.2kΩ 62KΩ 620KΩ 6.2MΩ 6.8Ω 68Ω 680Ω 6.8kΩ 68kΩ 680kΩ 6.8MΩ 7.5Ω 75Ω 750Ω 7.5kΩ 75kΩ 750kΩ 7.5MΩ 8.2Ω 82Ω 820Ω 8.2kΩ 82kΩ 820kΩ 8.2MΩ 9.1Ω 91Ω 910Ω 9.1kΩ 91kΩ 910kΩ 9.1MΩ #generics #CommonPartsLibrary
  • Generic Capacitor
    A generic fixed capacitor ideal for rapid circuit topology development. You can choose between polarized and non-polarized types, its symbol and the footprint will automatically adapt based on your selection. Supported options include standard SMD sizes for ceramic capacitors (e.g., 0402, 0603, 0805), SMD sizes for aluminum electrolytic capacitors, and through-hole footprints for polarized capacitors. Save precious design time by seamlessly add more information to this part (value, footprint, etc.) as it becomes available. Standard capacitor values: 1.0pF 10pF 100pF 1000pF 0.01uF 0.1uF 1.0uF 10uF 100uF 1000uF 10,000uF 1.1pF 11pF 110pF 1100pF 1.2pF 12pF 120pF 1200pF 1.3pF 13pF 130pF 1300pF 1.5pF 15pF 150pF 1500pF 0.015uF 0.15uF 1.5uF 15uF 150uF 1500uF 1.6pF 16pF 160pF 1600pF 1.8pF 18pF 180pF 1800pF 2.0pF 20pF 200pF 2000pF 2.2pF 22pF 20pF 2200pF 0.022uF 0.22uF 2.2uF 22uF 220uF 2200uF 2.4pF 24pF 240pF 2400pF 2.7pF 27pF 270pF 2700pF 3.0pF 30pF 300pF 3000pF 3.3pF 33pF 330pF 3300pF 0.033uF 0.33uF 3.3uF 33uF 330uF 3300uF 3.6pF 36pF 360pF 3600pF 3.9pF 39pF 390pF 3900pF 4.3pF 43pF 430pF 4300pF 4.7pF 47pF 470pF 4700pF 0.047uF 0.47uF 4.7uF 47uF 470uF 4700uF 5.1pF 51pF 510pF 5100pF 5.6pF 56pF 560pF 5600pF 6.2pF 62pF 620pF 6200pF 6.8pF 68pF 680pF 6800pF 0.068uF 0.68uF 6.8uF 68uF 680uF 6800uF 7.5pF 75pF 750pF 7500pF 8.2pF 82pF 820pF 8200pF 9.1pF 91pF 910pF 9100pF #generics #CommonPartsLibrary
  • Generic Inductor
    A generic fixed inductor for rapid developing circuit topology. *You can now change the footprint and 3D model at the top level anytime you want. This is the power of #generics
  • Terminal
    Terminal
    An electrical connector acting as reusable interface to a conductor and creating a point where external circuits can be connected.
  • RMCF0805JT47K0
    47 kOhms ±5% 0.125W, 1/8W Chip Resistor 0805 (2012 Metric) Automotive AEC-Q200 Thick Film #forLedBlink
  • 875105359001
    10uF Capacitor Aluminum Polymer 20% 16V SMD 5x5.3mm #forLedBlink #commonpartslibrary #capacitor #aluminumpolymer #radialcan
  • CTL1206FYW1T
    Yellow 595nm LED Indication - Discrete 1.7V 1206 (3216 Metric) #forLedBlink

Inspect

LED-1206-Template

LED-1206-Template
Description

Created
Last updated by oscar0971405529
2 Contributor(s)
jharwinbarrozo
oscar0971405529

Controls

Properties

Part Type
LED
Manufacturer Part Number
Datasheet URL
Manufacturer Name
Designator Prefix
LED

Availability & Pricing

DistributorQty 1

Assets