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

Design a blinking LED circuit
Design a WiFi water flow meter
Help me brainstorm ideas
Design a block diagram
Find parts in the library
Read a datasheet
Simulate a circuit
Write I2C initialization code
Generate firmware skeleton
New Subsystem Wizard

Ready.


how to connect stm32h7 with 48v inputs which are optically isolated

@copilot how to connect stm32 pin (which is used as an output ) to mechanical relay with 12V coil
2y
To connect an STM32 microcontroller pin, configured as an output, to a mechanical relay with a 12V coil, you need to consider the voltage and current capabilities of the STM32's GPIO pins and the relay's coil requirements. Since the STM32's GPIO output typically cannot drive high currents or voltages directly (3.3V or 5V depending on the model, and around 20 mA max), an intermediate driver, like a transistor, is necessary. Here is a simplified way to do it:
Components Needed:
  • NPN transistor (e.g., 2N2222)
  • Base resistor for the transistor (e.g., 1kΩ)
  • Flyback diode (e.g., 1N4007)
  • Mechanical relay with a 12V coil
Connection Overview:
  1. STM32 GPIO to Transistor Base:
    • Connect the STM32 output pin to the base of the NPN transistor through a resistor. This resistor controls the base current of the transistor. A typical value is 1kΩ, but this depends on your specific transistor and desired base current.
  2. Transistor Collector to Relay Coil:
    • Connect the collector of the NPN transistor to one end of the relay coil.
  3. Relay Coil to Power Supply:
    • Connect the other end of the relay coil to your 12V power supply.
  4. Transistor Emitter to Ground:
    • Connect the emitter of the NPN transistor to the ground of your circuit, which should be common between the STM32 and the 12V power supply.
  5. Flyback Diode Across Relay Coil:
    • Connect a flyback diode across the relay coil (in parallel with the coil) in a reverse-biased orientation (cathode to the 12V side) to protect the transistor from voltage spikes when the relay deactivates.
Example Connections:
  • Connect STM32:GPIO_Pin to R_Base:1 (Base Resistor input).
  • Connect R_Base:2 (Base Resistor output) to T1:Base (Transistor base).
  • Connect T1:Collector to Relay_Coil:1.
  • Connect Relay_Coil:2 to +12V.
  • Connect T1:Emitter to GND.
  • Connect Flyback_Diode:Anode to GND.
  • Connect Flyback_Diode:Cathode to +12V (across the relay coil).
Notes:
  • GPIO_Pin: Replace with your specific GPIO pin identifier.
  • R_Base: A base resistor for the NPN transistor, assume 1kΩ unless specified otherwise.
  • T1: An NPN transistor like 2N2222.
  • Relay_Coil: The coil terminals of your mechanical relay.
  • The flyback diode is critical for protecting the transistor from inductive spikes generated by the relay coil when switched off.
These instructions assume standard component behaviors and a single GPIO pin driving the relay. Adjust values as necessary based on your specific components and requirements.
2y
recommend suitable parts
2y
For connecting an STM32 GPIO pin to a mechanical relay with a 12V coil, I recommend the following components based on common availability and general suitability for a broad range of projects. Please check your specific project requirements and adjust as necessary:
Transistor:
  • 2N2222: This is a widely used NPN bipolar junction transistor (BJT) suitable for switching applications.
    • Vce(max): 40V
    • Ic(max): 600mA
    • The 2N2222 can comfortably switch the current needed for most low to medium power relay coils.
Base Resistor for the Transistor:
  • 1kΩ Resistor: A common value for limiting base current without drawing too much from the STM32's GPIO pin.
    • The exact value might need tweaking based on the hFE (DC current gain) of your specific 2N2222 transistor and the coil current of the relay.
    • Calculation example: Assuming the STM32's output is 3.3V, and Vbe(sat) approximately 0.7V, with an hFE of 100, R=VGPIOVBEIB=3.3V0.7V(IC/hFE)R = \frac{V_{GPIO} - V_{BE}}{I_{B}} = \frac{3.3V - 0.7V}{(I_{C}/h_{FE})} where (I_{C}) is the coil current.
Flyback Diode:
  • 1N4007: A general-purpose, high-voltage rectifier diode sufficient for most relay coil voltages and capable of handling the inductive kickback.
    • Reverse Voltage: 1000V, more than enough for a 12V application.
Mechanical Relay:
  • A relay should be chosen based on your switching needs (AC vs. DC load, load voltage, and current).
    • JQC-3F(T73): A typical example for low power applications.
      • Coil Voltage: 12V
      • Contact Rating: 10A at 250VAC or 10A at 30VDC
    • Ensure the coil current is within the range that can be handled by the 2N2222 (up to 600mA).
Assumptions and Additional Recommendations:
  • The STM32's GPIO is configured as a digital output, can source/sink enough current for the base resistor chosen, and operates within its I/O voltage rating.
  • Always double-check the datasheet of each component, especially the transistor and relay, to ensure compatibility with your specific electrical parameters.
  • It might be valuable to consider adding a pull-down resistor (e.g., 10kΩ) between the STM32 GPIO pin and ground to ensure the pin remains low when the MCU is in reset or uninitialized, preventing accidental relay activation.
  • If your application involves switching high voltages or currents, consider safety precautions, including isolation between the control (low voltage) and load (high voltage/current) sides.
This configuration and component selection provide a generic framework for interfacing an STM32 GPIO pin with a mechanical relay. Adjust component values and specifications according to your project's requirements.
2y
can 2n2219 work
2y
Yes, a 2N2219 can work as a substitute for a 2N2222 in driving a mechanical relay from an STM32 GPIO pin. The 2N2219 is another NPN bipolar junction transistor (BJT) with characteristics that are suitable for switching applications, including driving relay coils. Here's a comparison and considerations for using the 2N2219:
2N2219 Specifications:
  • Vce(max): 30V - This is lower than the 40V of the 2N2222 but is still sufficient for a 12V relay coil application.
  • Ic(max): 800mA - The current handling capability is higher than the 2N2222's 600mA, offering more headroom for driving the relay coil.
  • Ptot(max): 800mW - Adequate for this application, assuming proper driving and no excessive power dissipation.
Given these specifications, the 2N2219 can be used effectively to switch a 12V relay coil as initially described. The base resistor value initially recommended (1kΩ) remains a good starting point, as the base-emitter voltage drop (Vbe) and transistor gain (hFE/beta) characteristics are similar between the 2N2219 and 2N2222. However, always refer to the specific transistor's datasheet to calculate the exact base resistor if you're aiming for precise control over the transistor's saturation.
Connection Adjustments:
No adjustments to the connection method are needed when substituting the 2N2219 for the 2N2222. The connections are as follows:
  • STM32 GPIO Pin to 2N2219 Base through a 1kΩ resistor.
  • 2N2219 Collector to Relay Coil.
  • Relay Coil to +12V supply.
  • 2N2219 Emitter to Ground.
  • Flyback diode (1N4007) across the relay coil.
Additional Considerations:
  • Ensure that the 2N2219's mounting and thermal dissipation meet your project's requirements; it might differ slightly from the 2N2222 depending on the package.
  • The 2N2219 typically comes in a metal can package (TO-39), which may differ from the 2N2222's plastic package (TO-92). Ensure your PCB layout or breadboard setup accommodates this if applicable.
Substituting the 2N2219 for the 2N2222 in your application should work well, provided the driving requirements (voltage, current) are within the specs of the transistor and the necessary precautions for safe operation are observed.
2y
componenets should be smd if possible
2y
For Surface-Mount Device (SMD) applications, you'll want to select components that are specifically designed for SMD soldering and assembly methods. Here are SMD equivalents for the parts recommended previously for driving a 12V mechanical relay from an STM32 GPIO pin:
Transistor:
  • 2N2222A SMD Version: The SOT-23 package is a common SMD format for transistors. The MMBT2222A is an SMD version of the 2N2222 transistor, suitable for your application.
    • Package: SOT-23
Base Resistor for the Transistor:
  • 1kΩ Resistor, SMD: For SMD resistors, sizes are often designated by a four-digit code, representing length and width. A common size for hobbyist and general-purpose applications is the 0805 (2012 metric), though 0603 (1608 metric) and 0402 (1005 metric) are also widely used where space is more constrained.
    • Package: 0805 (or 0603/0402 based on space requirements)
Flyback Diode:
  • 1N4007 SMD Version: For an SMD equivalent handling similar reverse voltage and current, you can use the M7 diode (SMD version of 1N4007) which is available in the SMA (DO-214AC) package, a common SMD format for diodes.
    • Package: SMA (DO-214AC)
Mechanical Relay:
  • Relays with 12V coils are available in SMD packages, but the choice depends on your specific requirements (switching current, voltage, and whether you need normally open, normally closed, or changeover contacts). One example could be:
    • G6K-2F-Y 12VDC: An ultra-miniature relay suitable for surface mounting. It offers low power consumption and is ideal for a wide range of applications.
      • Package: Surface-mount
Additional SMD Component Recommendations:
Given the transition to SMD components, ensure the following during your design and assembly process:
  • PCB Design: Adjust the footprint in your PCB design software to match the package of each SMD component you've chosen.
  • Soldering: SMD soldering generally requires more precision and appropriate tools such as a fine-tip soldering iron, solder paste, and possibly a reflow oven or hot air station.
  • Inspection and Testing: After assembly, closely inspect all solder joints with a magnifying glass or microscope to ensure there are no solder bridges or cold joints. Electrical testing for shorts or opens in the circuit before applying power can save your components from potential damage.
Substituting these SMD components into your design allows for a more compact and typically more modern assembly but requires careful handling during the PCB design and assembly process due to their small size.
2y
i am using relay rayex-l90s
2y
For interfacing the Rayex LEG-12F-R [assuming L90S was a typo and you meant LEG-12F series, as Rayex LEG-12F-R is a common relay model] with an STM32 microcontroller via an SMD transistor, based on your preference for SMD components, here are the adjusted recommendations considering this specific relay:
Relay Specifications:
  • Rayex LEG-12F-R
    • Coil Voltage: 12V
    • Contact Form: SPDT (Single Pole Double Throw)
    • Coil resistance: To be confirmed based on the datasheet, but typically around 400Ω for a 12V coil which implies a coil current of about 30mA ($I = \frac{V}{R} = \frac{12V}{400Ω} = 30mA$).
Given your specification for SMD components and the requirements for driving a Rayex LEG-12F-R relay:
Recommended SMD Components: Transistor:
  • MMBT2222A (SOT-23 package): As previously mentioned, this transistor is the SMD version of the 2N2222 and is suitable for switching the relay coil.
Base Resistor for the Transistor:
  • Given the coil current of about 30mA and assuming a hFE (minimum) of 100 for the MMBT2222A, the base current needs to be at least 0.3mA. However, to ensure saturation a higher base current is usually preferred, aiming for at least 1mA to 5mA.
  • For an STM32 GPIO voltage of 3.3V, and assuming a Vbe of about 0.7V, you can calculate the base resistor as Rbase=VGPIOVBEIB=3.3V0.7V5mA=520ΩR_{base} = \frac{V_{GPIO} - V_{BE}}{I_{B}} = \frac{3.3V - 0.7V}{5mA} = 520Ω Considering standard resistor values, a 560Ω resistor could be a good choice. Use the closest standard value that provides the desired base current.
  • Package: 0805 or 0603 for general use.
Flyback Diode:
  • M7 Diode (SMA DO-214AC package): This will protect the transistor from voltage spikes caused by the inductive load when the relay coil is de-energized.
Connection Scheme:
  • Connect STM32 GPIO Pin to 560Ω Resistor.
  • Connect 560Ω Resistor to MMBT2222A Base.
  • Connect MMBT2222A Collector to Rayex LEG-12F-R Coil (+).
  • Rayex LEG-12F-R Coil (-) to System Ground.
  • Connect +12V supply to the other side of Rayex LEG-12F-R Coil (+).
  • Place the M7 Diode across the Rayex LEG-12F-R Coil terminals, making sure the anode connects to the coil's negative terminal and the cathode connects to the coil's positive terminal.
Please double-check the relay's datasheet for its coil resistance and adjust the calculations if necessary. Also, ensure your PCB design accommodates the SMD components' footprints and that you have the tools and skills necessary for SMD soldering. Keep in mind that handling and soldering SMD components typically require precision and care.
2y
can 1n4448ws work
2y
Yes, the 1N4448WS can work as a flyback diode in your application to drive a Rayex LEG-12F-R relay with an STM32 microcontroller through a MMBT2222A transistor. The 1N4448WS is a small signal fast switching diode and comes in an SMD package (SOD-323), making it suitable for your requirement for SMD components.
1N4448WS Specifications:
  • Reverse Voltage: Up to 75V, which is well above the 12V you'll be switching with the relay.
  • Forward Current: 150mA, which is adequate for the current through the relay coil (typically below 100mA for a 12V coil).
  • Package: SOD-323, which is an SMD package.
Given these characteristics, the 1N4448WS diode can safely be used to protect your transistor switch from the inductive kickback generated when the current through the relay coil is suddenly interrupted.
Connection Scheme Update:
  • Place the 1N4448WS Diode across the Rayex LEG-12F-R Coil terminals, with the anode (the side without the line marking) connected to the coil's negative terminal and the cathode (the side with the line marking) connected to the coil's positive terminal.
While the 1N4448WS may not have the same current handling capability as some larger diodes like the 1N4007 series, it is sufficient for this application concerning the current levels involved with the relay coil. Moreover, its fast switching capability is advantageous for dealing with the fast transient voltages associated with switching inductive loads.
Additional Note:
When designing your PCB or planning the layout for your components, be mindful of the diode's small SOD-323 package, which requires careful soldering and handling. This choice in diode nicely aligns with the trend towards miniaturization and provides a compact, efficient solution for protecting your transistor from the relay's inductive spikes.
2y
a buck converter that has very power consumption and can output 3 A, and 3.3v
1y
For a buck converter that is efficient with very low power consumption and capable of outputting 3.3V at 3A in an SMD package, you can consider using a synchronous buck converter IC. Here are some recommendations along with links to their datasheet for further details:
Recommended Synchronous Buck Converters: MP2322
  • Manufacturer: Monolithic Power Systems (MPS)
  • Input Voltage Range: 3.3V to 18V
  • Output Voltage: Adjustable, can be set to 3.3V
  • Output Current: Up to 3A
  • Features: High efficiency, low quiescent current, internal MOSFETs, compact 3x3 mm QFN package.
LM3671MF-3.3
  • Manufacturer: Texas Instruments
  • Input Voltage Range: 2.7V to 5.5V
  • Output Voltage: Fixed at 3.3V
  • Output Current: Up to 3A
  • Features: High efficiency (up to 95%), low quiescent current (16µA), SOT-23 package.
TPS565201
  • Manufacturer: Texas Instruments
  • Input Voltage Range: 4.5V to 17V
  • Output Voltage: Adjustable, can be set to 3.3V
  • Output Current: Up to 3A
  • Features: High efficiency, low quiescent current, internal MOSFETs, 8-pin SOIC package.
Example: MP2322 Connection and Components Typical Application Circuit:
  • Input Capacitor (Cin): Typically 22µF ceramic capacitor.
  • Inductor (L): Selection depends on desired ripple current; typical value is 2.2µH.
  • Output Capacitor (Cout): Typically two 22µF ceramic capacitors in parallel.
  • Feedback Resistors (Rfb1 and Rfb2): Set the output voltage if adjustable; for 3.3V output, refer to the datasheet for exact values.
Basic Connections:
  • Vin to Input Voltage Source: Connect Vin to your input voltage (e.g., 5V from your primary power source).
  • GND to Ground: Connect GND to the common ground.
  • SW to Inductor and then to Vout: Connect the SW pin to one end of the inductor (typically 2.2µH), and the other end of the inductor to the output capacitor and load.
  • Vout to Load and Cout: Connect Vout to your load and the output capacitor (typically 22µF).
Notes:
  1. Thermal Management: Ensure proper thermal management by providing adequate PCB copper area for heat dissipation.
  2. Decoupling Capacitors: Place the input and output capacitors as close as possible to the IC to minimize voltage ripple and noise.
  3. PCB Layout: Follow the recommended layout guidelines provided in the datasheet to ensure optimal performance and minimize electromagnetic interference (EMI).
The choice of these ICs ensures that you get a compact, efficient, and low-power solution for your 3.3V @ 3A requirements. Ensure to check the datasheet for each part for specific details on the design and recommended operating conditions.
1y
how to connect stm32 pin (which is used as an output ) to mechanical relay with 12V coil
2y
@copilot how to connect stm32h7 with 48v inputs which are optically isolated
2y
To connect an STM32H7 microcontroller to 48V inputs that are optically isolated, you should use optical isolators (or optocouplers) appropriate for handling 48V on the input side. Optocouplers are used to electrically isolate the high voltage side (your 48V inputs) from the low voltage side (the microcontroller inputs, which typically operate at 3.3V or 5V).
Here's a general approach to designing this:
  1. Optocoupler Selection: Choose optocouplers that can handle 48V on the input side. Make sure the current transfer ratio (CTR) is suitable for your application, so the output side reliably switches states congruent with the input side.
  2. Circuit Design for 48V Inputs:
    • Each 48V input will be connected to the anode of the optocoupler's LED through a current-limiting resistor.
    • The cathode of the optocoupler's LED connects to the ground of the 48V system.
    Assume the optocoupler's LED forward voltage is 1.2V, and the desired current is 10mA. The resistor can be calculated as follows:
    R=VinVLEDILED=48V1.2V10mA=4680ΩR = \frac{V_{in} - V_{LED}}{I_{LED}} = \frac{48V - 1.2V}{10mA} = 4680 \Omega
    For practical purposes, you might round this to the nearest standard resistor value, for example, 4.7kΩ.
  3. Circuit Design for the STM32H7 Side:
    • Connect the collector of the optocoupler's transistor to a GPIO pin on the STM32H7, which will be configured as an input.
    • Connect the emitter of the optocoupler's transistor to the ground of the STM32H7 system.
    • A pull-up resistor should be used on the GPIO pin to ensure it stays at a known level when the transistor is not conducting. The value can be around 10kΩ connected between the GPIO pin and the 3.3V supply (assuming the STM32H7 operates at 3.3V).
  4. Connections:
    • For example, assuming U1 is your optocoupler, R1 is the current-limiting resistor (4.7kΩ), and R2 is the pull-up resistor (10kΩ), and assuming GPIO1 on the STM32H7 (designated as U2) is used to read the input:
      • Connect R1:1 to the 48V input.
      • Connect R1:2 to U1:Anode.
      • Connect U1:Cathode to the 48V ground.
      • Connect U1:Collector to U2:GPIO1 and R2:1.
      • Connect R2:2 to 3.3V supply.
      • Connect U1:Emitter to STM32H7 ground.
By following these steps, you should be able to safely interface your STM32H7 microcontroller with optically isolated 48V inputs. Remember to check the datasheets for the exact pin designations of your components, and adjust the resistor values based on the actual forward voltage and desired forward current of the optocoupler you select.
2y
recommend a suitable optocoupler for above purpose
2y
For interfacing an STM32H7 microcontroller with 48V inputs that are optically isolated, you would need an optocoupler that can safely handle the 48V input side while providing appropriate electrical isolation to the microcontroller operating at a much lower voltage level (e.g., 3.3V). An ideal optocoupler for this situation needs to have:
  1. A high enough isolation voltage to safely separate the 48V side from the microcontroller side.
  2. A forward current limit and forward voltage compatible with 48V inputs when used with suitable series resistors.
  3. A current transfer ratio (CTR) suitable for the input current to reliably switch the output.
Given these requirements, the PC817 is a widely recommended and used optocoupler that meets the criteria well and is readily available. The PC817 is a high-density mounting type photocoupler that offers a high isolation voltage (5kVrms), a forward current of 50mA, and it can operate at temperatures from -55°C to +100°C, making it suitable for a wide range of applications.
Connection Tips for Using PC817:
  • On the 48V Input Side (High Voltage Side):
    • Connect a current limiting resistor in series with the anode of PC817 to limit the current as per the specifications. Assuming a PC817 LED forward voltage of approximately 1.2V and aiming for a forward current of around 10mA, the resistor can be calculated using Ohm's Law:
      R=VinputVfIf=48V1.2V10mA=4.68kΩR = \frac{V_{input} - V_{f}}{I_{f}} = \frac{48V - 1.2V}{10mA} = 4.68k\Omega
    A standard resistor value of 4.7kΩ can be used.
  • On the STM32H7 Side (Low Voltage Side):
    • Connect the collector of the PC817 to the input pin of the STM32H7, which is configured to receive digital input.
    • A pull-up resistor (e.g., 10kΩ) might be required between the STM32H7 input pin and 3.3V to ensure the pin is at a default high state.
    • The emitter should be connected to the ground of the STM32H7's power supply.
Please, ensure to check the datasheet of the PC817 (or any chosen optocoupler) for precise specifications and to fine-tune the resistor values based on the exact characteristics of your setup. Remember, while the PC817 is a common choice for its reliability and availability, the best optocoupler for your application might vary depending on specific requirements such as speed, isolation voltage, or packaging.
2y
1


  • 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 ideal for rapid circuit topology development. Its footprint automatically adapts based on the selected package case code—supporting 0402, 0603, 0805, 1203, and many other standard SMD packages, as well as axial horizontal and vertical configurations. Save precious design time by seamlessly add more information to this part (value, footprint, etc.) as it becomes available. Standard resistor values: 1.0 ohm, 10 ohm, 100 ohm, 1.0k ohm, 10k ohm, 100k ohm, 1.0M ohm 1.1 ohm, 11 ohm, 110 ohm, 1.1k ohm, 11k ohm, 110k ohm, 1.1M ohm 1.2 ohm, 12 ohm, 120 ohm, 1.2k ohm, 12k ohm, 120k ohm, 1.2M ohm 1.3 ohm, 13 ohm, 130 ohm, 1.3k ohm, 13k ohm, 130k ohm, 1.3M ohm 1.5 ohm, 15 ohm, 150 ohm, 1.5k ohm, 15k ohm, 150k ohm, 1.5M ohm 1.6 ohm, 16 ohm, 160 ohm, 1.6k ohm, 16k ohm, 160k ohm, 1.6M ohm 1.8 ohm, 18 ohm, 180 ohm, 1.8K ohm, 18k ohm, 180k ohm, 1.8M ohm 2.0 ohm, 20 ohm, 200 ohm, 2.0k ohm, 20k ohm, 200k ohm, 2.0M ohm 2.2 ohm, 22 ohm, 220 ohm, 2.2k ohm, 22k ohm, 220k ohm, 2.2M ohm 2.4 ohm, 24 ohm, 240 ohm, 2.4k ohm, 24k ohm, 240k ohm, 2.4M ohm 2.7 ohm, 27 ohm, 270 ohm, 2.7k ohm, 27k ohm, 270k ohm, 2.7M ohm 3.0 ohm, 30 ohm, 300 ohm, 3.0K ohm, 30K ohm, 300K ohm, 3.0M ohm 3.3 ohm, 33 ohm, 330 ohm, 3.3k ohm, 33k ohm, 330k ohm, 3.3M ohm 3.6 ohm, 36 ohm, 360 ohm, 3.6k ohm, 36k ohm, 360k ohm, 3.6M ohm 3.9 ohm, 39 ohm, 390 ohm, 3.9k ohm, 39k ohm, 390k ohm, 3.9M ohm 4.3 ohm, 43 ohm, 430 ohm, 4.3k ohm, 43K ohm, 430K ohm, 4.3M ohm 4.7 ohm, 47 ohm, 470 ohm, 4.7k ohm, 47k ohm, 470k ohm, 4.7M ohm 5.1 ohm, 51 ohm, 510 ohm, 5.1k ohm, 51k ohm, 510k ohm, 5.1M ohm 5.6 ohm, 56 ohm, 560 ohm, 5.6k ohm, 56k ohm, 560k ohm, 5.6M ohm 6.2 ohm, 62 ohm, 620 ohm, 6.2k ohm, 62K ohm, 620K ohm, 6.2M ohm 6.8 ohm, 68 ohm, 680 ohm, 6.8k ohm, 68k ohm, 680k ohm, 6.8M ohm 7.5 ohm, 75 ohm, 750 ohm, 7.5k ohm, 75k ohm, 750k ohm, 7.5M ohm 8.2 ohm, 82 ohm, 820 ohm, 8.2k ohm, 82k ohm, 820k ohm, 8.2M ohm 9.1 ohm, 91 ohm, 910 ohm, 9.1k ohm, 91k ohm, 910k ohm, 9.1M ohm #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, 10000uF 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, 220pF, 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 suitable for rapid circuit topology development. The footprint automatically adapts based on the selected package, supporting standard SMD sizes (e.g., 0402, 0603, 0805) as well as well-known inductor packages such as SDR1806, PA4320, SRN6028, and SRR1260. Standard inductor values: 1.0 nH, 10 nH, 100 nH, 1.0 µH, 10 µH, 100 µH, 1.0 mH 1.2 nH, 12 nH, 120 nH, 1.2 µH, 12 µH, 120 µH, 1.2 mH 1.5 nH, 15 nH, 150 nH, 1.5 µH, 15 µH, 150 µH, 1.5 mH 1.8 nH, 18 nH, 180 nH, 1.8 µH, 18 µH, 180 µH, 1.8 mH 2.2 nH, 22 nH, 220 nH, 2.2 µH, 22 µH, 220 µH, 2.2 mH 2.7 nH, 27 nH, 270 nH, 2.7 µH, 27 µH, 270 µH, 2.7 mH 3.3 nH, 33 nH, 330 nH, 3.3 µH, 33 µH, 330 µH, 3.3 mH 3.9 nH, 39 nH, 390 nH, 3.9 µH, 39 µH, 390 µH, 3.9 mH 4.7 nH, 47 nH, 470 nH, 4.7 µH, 47 µH, 470 µH, 4.7 mH 5.6 nH, 56 nH, 560 nH, 5.6 µH, 56 µH, 560 µH, 5.6 mH 6.8 nH, 68 nH, 680 nH, 6.8 µH, 68 µH, 680 µH, 6.8 mH 8.2 nH, 82 nH, 820 nH, 8.2 µH, 82 µH, 820 µH, 8.2 mH #generics #CommonPartsLibrary
  • 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

Relaxed Teal Carbonite Freezer

Relaxed Teal Carbonite Freezer thumbnail
Welcome to your new project. Imagine what you can build here.

Properties

Properties describe core aspects of the project.

Pricing & Availability

Distributor

Qty 1

Controls