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
Prepare for Manufacturing
Component Selection Workflow
New Subsystem Wizard
Write I2C initialization code
Generate firmware skeleton
U3
U1
how can i add tag-connect holes to pcb?

@copilot how can i add tag-connect holes to pcb?
2y
Adding Tag-Connect holes to your PCB in Flux is a straightforward process that involves placing non-plated through-holes (NPTH) or pads at specific locations as per the Tag-Connect footprint. The TC2050, for instance, requires six pads or holes for its programming interface. Here's how you can do it:
  1. Check the Datasheet: First, look up the TC2050 datasheet or the Tag-Connect website for the exact footprint and spacing of the holes for the Tag-Connect plug you're using. For the TC2050, it's likely a 2x5 array of holes with specific spacing.
  2. Create a Custom Footprint: Since the Tag-Connect connector uses a unique footprint, you may need to create a custom footprint in Flux. Here's a simplified process:
    • Go to the PCB layout editor in Flux.
    • Open the footprint editor to create a new footprint.
    • Using the tool's drawing or pad placement features, add pads or NPTH holes according to the Tag-Connect specifications. For the TC2050, you generally need pads with specific diameters at the correct locations corresponding to the 2x5 layout.
    • Make sure to include two additional larger holes or pads at the ends if your Tag-Connect model requires them for alignment or locking purposes.
  3. Spacing and Dimensions: The standard pitch (distance between the centers of adjacent pins) for the TC2050 is typically $0.1$ inches ($2.54$ mm). Ensure the pads/hole positions match these dimensions accurately.
  4. Placement on PCB: After creating the footprint, you can place it on your PCB layout where you'd like the Tag-Connect to connect to your board. This is often near your microcontroller or target IC for easy programming or debugging access.
  5. Routing: Connect the pads of your Tag-Connect footprint to their respective targets on the PCB. For the TC2050, these might include connections to a microcontroller's SWD, JTAG, or other programming/signaling pins.
Remember, it's crucial to double-check the mechanical and electrical connections of your custom footprint against the Tag-Connect specifications to ensure correct alignment and functionality. If your version of Flux does not directly support adding custom footprints, you may need to manually draw the holes using available tools and note the electrical connections for manual wiring during the layout phase.
2y
Someone is typing...
1
list all U2 pins in a table format. For each pin provide its pin number, pin nam...

which of those pins is used for i2c?
2y
@copilot list all U2 pins in a table format. For each pin provide its pin number, pin name and function.
2y
Here's a table listing all the pins for the component designated as U2, including their pin number, pin name, and function:

Table


Pin NumberPin NameFunction
1DEC1Power (1.1 V Digital supply decoupling)
2XL1/P0.00Digital I/O (General purpose I/O)
3XL2/P0.01Digital I/O (General purpose I/O)
4AIN2/P0.04Analog input
5AIN3/P0.05Analog input
6P0.06Digital I/O (General purpose I/O)
7P0.07Digital I/O (General purpose I/O)
8VDDPower (Power supply)
9VDDHPower (High voltage power supply)
10VBUSPower (5 V input for USB 3.3 V regulator)
11DECUSBPower (USB 3.3 V regulator supply decoupling)
12D-USB (USB D-)
13D+USB (USB D+)
14P0.14Digital I/O (General purpose I/O)
15P0.15Digital I/O (General purpose I/O)
16P0.18/~RESETDigital I/O (General purpose I/O)
17P0.20Digital I/O (General purpose I/O)
18VDDPower (Power supply)
19SWDIODebug (Serial wire debug I/O for debug and programming)
20SWDCLKDebug (Serial wire debug clock input for debug and programming)
21DEC5Power (1.3 V regulator supply decoupling)
22P0.16Digital I/O (General purpose I/O)
23P0.17Digital I/O (General purpose I/O)
24ANTRF (Single-ended radio antenna connection)
25VSS_PAGround
26DEC6Power (Decoupling)
27DEC3Power (Decoupling)
28XC1Reserved
29XC2Reserved
30VDDPower (Power supply)
31P0.08Digital I/O (General purpose I/O)
32P0.29Digital I/O (General purpose I/O)
33P0.30Digital I/O (General purpose I/O)
34P0.28Digital I/O (General purpose I/O)
35AIN1/P0.03Analog input
36AIN0/P0.02Analog input
37VSSGround
38DEC4Power (Decoupling)
39DCCReserved
40VDDPower (Power supply)
41VSSGround
This table provides a comprehensive view of all the pins available on the component U2 (NRF52820-QDAA-R) within your project, their respective functions, and their designations.
2y
which of those pins is used for i2c?
2y
For I2C communication, typically, SCL (Serial Clock Line) and SDA (Serial Data Line) pins are used. However, the Nordic nRF52820 (designated as U2 in your project) is a highly flexible SoC (System on Chip) that allows pin mapping for various functions including I2C, which is referred to as TWI (Two-Wire Interface) in Nordic's documentation.
Given the flexibility in pin mapping, any of the GPIO (General Purpose Input Output) pins can potentially be configured as SCL or SDA lines for I2C communication. The specific pins to be used for I2C would be determined by the configuration specified in the PSEL.SCL and PSEL.SDA registers.
If you plan to use I2C/TWI communication with U2, you would set the PSEL.SCL and PSEL.SDA registers to map the I2C functions to your selected GPIO pins. While the datasheet excerpts do not specify the exact pin numbers for SCL and SDA (since it's configurable), you would typically choose pins that fit your design layout and peripheral placement best while configuring them appropriately in your software.
2y
Someone is typing...
3
can i order stock NRF52820 chip and connect it with usb to allow chip programmin...

@copilot can i order stock NRF52820 chip and connect it with usb to allow chip programming? that would make jtag unnecessary.
1y
Yes, you can definitely program the NRF52820 chip using a USB connection, eliminating the need for a JTAG interface. To achieve this, you need to connect the NRF52820 to a USB-to-Serial converter or use its native USB interface if it has one.
The NRF52820 has a native USB interface, which simplifies the connection:
Connections
  1. USB Connections
    • Connect U2:VBUSU2:VBUS to 5V from the USB connector (J3:VBUS_1J3:VBUS\_1).
    • Connect U2:D+U2:D+ to USB D+ (J3:DP1J3:DP1).
    • Connect U2:DU2:D- to USB D- (J3:DN1J3:DN1).
    • Connect U2:VSSU2:VSS to GND (J3:GNDJ3:GND).
  2. Bypass Capacitors
    • Place bypass capacitors (e.g., C1C1 and C2C2) between VDD and GND close to the NRF52820.
  3. Programming via USB
    • The NRF52820 can be programmed directly via USB. Once the chip is connected to the USB, it can be configured to enter a bootloader mode. You can utilize Nordic's DFU (Device Firmware Update) bootloader and nRF Connect tools for programming.
Example Connections
  • Power from USB:
    • Connect J3:VBUS_1J3:VBUS\_1 to U2:VBUSU2:VBUS.
  • Data Lines:
    • Connect J3:DP1J3:DP1 to U2:D+U2:D+.
    • Connect J3:DN1J3:DN1 to U2:DU2:D-.
Additional Notes
  • Make sure you have a proper USB bootloader flashed to the NRF52820. You can use a development board or JTAG for the very first programming to flash the USB bootloader if needed.
  • This will allow your chip to be programmable via USB, simplifying your design and enabling easy firmware updates.
This approach allows your Bluetooth Pen project to have a simple and effective way of firmware programming through USB without needing JTAG. Is there anything specific you’d like help with next?
1y
Someone is typing...
8
how can i connect TC2050\_JTAG and NRF52820-QDAA-R to make microcontroller progr...

@copilot how can i connect TC2050_JTAG and NRF52820-QDAA-R to make microcontroller programmable?
2y
To make the NRF52820-QDAA-R microcontroller programmable using the TC2050 (J1) for JTAG, you'll need to connect the following pins from the JTAG connector (J1) to the corresponding pins on the NRF52820-QDAA-R (U2):
  1. Supply voltage (VDD) and Ground connections:
    • Connect J1:Vdd to U2:VDD (pins 8, 9, 18, 30, 40 for redundancy and ensuring there's enough supply for all parts of the chip).
    • Connect J1:GND (pins 3, 5, 7, 9) to U2:VSS and VSS_PA (pins 37, 41) to ensure the ground is connected throughout the device.
  2. JTAG Interface connections:
    • Connect J1:TMS (Test Mode State) to U2:P0.15. Although the NRF52820 uses SWD (Serial Wire Debug) instead of JTAG for programming and debugging, you can use TMS as SWDIO in this context.
    • Connect J1:TCK (Test Clock) to U2:P0.14. Similar to TMS, TCK can be used as SWDCLK for SWD in the NRF52820.
    • Connect J1:nReset to U2:P0.18/$$RESET to control the reset line. Although not part of the JTAG/SWD interface, tying the reset line allows for hardware resetting of the microcontroller during programming and debugging.
  3. Additional considerations:
    • Since the NRF52820 primarily supports SWD instead of JTAG, you'll use two of the JTAG pins to serve the SWD interface. SWD requires only SWDIO (Serial Wire Debug Input/Output) and SWDCLK (Serial Wire Debug Clock), addressed here with TMS and TCK, respectively.
    • Ensure that the TC2050 cable and connector support the signal integrity and power requirements of the NRF52820 for programming and debugging applications.
    • You might need to adjust the firmware and configuration settings within the IDE (Integrated Development Environment) you are using to ensure it supports programming the NRF52820 through SWD.
By following these connections, you will establish a basic setup for programming and debugging the NRF52820-QDAA-R microcontroller via the SWD protocol using the TC2050 connector.
2y
Someone is typing...
4
with what should i connect battery (J2) in this scheme?

@copilot with what should i connect battery (J2) in this scheme?
2y
Considering the components and nets in your project, I'm assuming you're attempting to charge a battery and power your system through it. Given the presence of a battery charger IC (U3: BQ25180YBGR), which has a BAT pin (U3:7) and an IN pin (U3:2) that typically connects to your power source (in this case, possibly from a USB connector through a power path management chip like IC1: STUSB4500QTR), I will suggest the connections based on typical application circuits of these components. Here are the general guidelines and assumptions:
  1. Battery to Charger Connection: You have already connected the battery (J2:P2) to the BAT pin (U3:7) of the battery charger (U3). This is appropriate for charging the battery.
  2. Supplying Power to the System:
    • The SYS pin (U3:4) of the battery charger IC (U3) is generally used to supply power to the system. When the battery is being charged, the SYS output can power the system directly from the input source. When the input power is removed, the SYS pin gets powered from the battery.
    • Connect the SYS pin (U3:4) to the VIN pin of any device that needs to be powered by the battery, which in your case could include the NRF52820-QDAA-R (U2), the STUSB4500QTR (IC1), and potentially other components in your design that require power but are not mentioned here. Since U1: VIN is already part of a net that includes U3:SYS, it looks like you are in the right direction.
  3. Ground Connection: Ensure all components, including the battery ground, are properly connected to a common ground. In your net list, the ground connections seem to be handled by net 33c856d857bd5e853676f5cf75bb6346, connecting several grounds together, including IC1:GND, U3:GND, and U1:VSS. Ensure J2:P1 (assuming it's the battery ground) is also connected here if it's not already.
  4. Input Power to Charger IC: Assuming J3 is a USB connector given the presence of VBUS, D+, D-, CC1, and CC2 pins, it's already correctly connected to the IN pin of U3 (battery charger) as part of the net 8e5486811bba51e4b3830c05ce04196a. Ensure that the path between the USB connector's VBUS and the BQ25180YBGR's IN pin is capable of handling the charging current.
By following these guidelines, your battery should be correctly integrated into the system, allowing for charging through U3 when power is present at J3 and supplying the system when external power is not available. This assumes J2 is your battery connector. If there are more specific details or other components involved, please provide additional information for a more tailored response.
2y
Someone is typing...
6
can you look at my project and figure out if this schematic will work when print...

@copilot can you look at my project and figure out if this schematic will work when printed on PCB board? the point is to have a bluetooth-enabled device which can toggle LED. It has rechargeable LiPo with USB-C. LED can also toggle by touching the wire connected to NRF52820-QDAA-R on pin 31.
2y
To evaluate whether your schematic will function as intended—a Bluetooth-enabled device capable of toggling an LED, featuring rechargeable LiPo battery functionality with USB-C input, and the option for manual LED toggling via touch interaction with pin 31 ($P0.08$) on the NRF52820-QDAA-R component—I'll go through the key electrical connections and features based on the components and nets listed in your project description.
Key Components Evaluation
  1. NRF52820-QDAA-R for Bluetooth Functionality:
    • This component is central to your project's Bluetooth capability. It seems you have it set up for basic connections including power ($VDD, VDDH$), ground ($VSS, VSS_PA$), decoupling capacitors, and antenna connection for Bluetooth functionality.
  2. LED Control:
    • The LED1 is connected to the NRF52820-QDAA-R at pin 31 ($P0.08$) for toggling via Bluetooth commands or touch interaction. This is per your description; however, confirmation on the connection between R5 (current limiting resistor for the LED) and the microcontroller is needed, as the net list shows:
      • Connect $U2:P0.17$ to $R5:P2$ (for LED toggling control). This seems to be a typo because you mentioned pin 31 ($P0.08$) for LED control.
      • Correct Connectivity should be planned like: Connect $U2:P0.08$ to $R5:P1$, and $R5:P2$ to $LED1:K$, allowing for the correct LED toggling functionality.
    • Additionally, there should be a connection from $LED1:A$ (anode) to a source of power. Your description implies LED control through GPIO but doesn't specify how it's powered on the high side.
  3. Power Management:
    • The inclusion of IC1 (STUSB4500QTR USB-PD controller), $U3$ (BQ25180YBGR battery charger), and $U1$ (XC6206P332MR-G LDO voltage regulator) indicate a sophisticated power management system for handling USB-C input and charging a LiPo battery.
    • The net list confirms connections for charging control and system power regulation including USB-C to battery charging ($U3$) and system power regulation ($U1$).
    • Connection specifics such as:
      • From USB-C to STUSB4500QTR for VBUS handling.
      • From STUSB4500QTR to BQ25180 for charging pathway control.
      • From BQ25180 to the battery indicates proper planning for USB-C charging.
    • The arrangement should ensure that the LiPo battery can be charged via USB-C and provide power to the system.
  4. Manual LED Toggle via Touch:
    • The idea to toggle LED by touching a wire connected to PIN 31 ($P0.08$) on the NRF52820 suggests an interactive GPIO handling. Ensure there's proper firmware debounce handling for this functionality to work smoothly.
Recommendations:
  • Verify Connections:
    • Review the specific connection between the LED, its resistor (R5), and the NRF52820 to ensure it matches your project description.
  • Power Management Verification:
    • Ensure that all components related to power management are correctly connected to handle USB-C input, battery charging, and power regulation without causing any issues. Special attention should be given to the power management ICs' ground connections (see net f4076c2185200954c87a6779ab3f6332), ensuring they are all well-connected to avoid potential ground loops.
  • Document Review:
    • Cross-check your project against the manufacturer's datasheets for the NRF52820-QDAA-R, STUSB4500QTR, BQ25180YBGR, and XC6206P332MR-G (among other components) to ensure all connections are compatible and meet the operational requirements provided in the datasheets.
  • Firmware:
    • Prepare firmware that handles the Bluetooth functionality appropriately, ensures safe battery charging practices, and includes debounce code for the manual LED toggling feature.
If these points are meticulously addressed, your schematic should function as intended when translated to a PCB. However, consider having it reviewed for best practices in PCB layout, such as trace width considerations for power lines, proper decoupling, and antenna placement for the NRF52820.
2y
Someone is typing...
7
how to connect STUSB4500QTR and NRF52820-QDAA-R?

@copilot how to connect STUSB4500QTR and USB4085-GF-A?
2y
To properly connect the STUSB4500QTR (which I'll refer to as IC1 for clarity) and the USB4085-GF-A (referred to as J3), you need to consider the USB Type-C connection requirements and how the STUSB4500QTR manages USB Power Delivery (PD) negotiation. Given the information provided and typical use cases, here is a simplified connection guide:
  1. VBUS Line: The VBUS lines from the USB Type-C connector (J3) should be connected to the VBUS line of the STUSB4500QTR (IC1). However, since the VBUS lines on J3 are split into multiple pins (VBUS, VBUS1,VBUS1, VBUS2, VBUS$$3), you should ensure they are appropriately merged before connecting to IC1.
    • Connect J3:VBUS to IC1:VBUS_VS_DISCH.
    • Note: You may need additional circuitry to safely handle VBUS power paths, such as current limiting or overvoltage protection.
  2. CC Lines: USB Type-C connectors have two CC lines for cable orientation detection and communication. Both CC lines from the USB connector need to connect to the CC lines of the STUSB4500QTR for proper USB PD negotiation.
    • Connect J3:CC1 to IC1:CC1.
    • Connect J3:CC2 to IC1:CC2.
  3. Ground Connections: Ensure that the GND pins on the USB connector are connected to the GND pins on the IC1 to complete the power circuit.
    • Connect J3:GND, J3:GND1,J3:GND1, J3:GND2, and J3:GND$$3 to IC1:GND.
As there are multiple VBUS and GND pins on J3, you should ensure they are all effectively connected to create a robust power path. The connection points I've listed aim to maintain proper USB PD functionality and power delivery for devices downstream of the STUSB4500QTR.
Given the intricate nature of USB PD, you may need additional passive components or specific circuitry not mentioned here (like resistors for the CC lines or protection components). The exact implementation can vary based on your application requirements, such as the power profiles you plan to support or hardware design constraints.
Please review the datasheets and application notes for both components for more detailed information and example circuits.
2y
@copilot how can i connect STUSB4500QTR with BQ25180YBGR?
2y
To connect the STUSB4500QTR (designated as IC1) with the BQ25180YBGR (designated as U3) in your Flux Capacitor project, you generally need to consider the functionality of both ICs and how they interact. The STUSB4500QTR is a USB PD sink controller, and the BQ25180YBGR is a battery charger IC. A typical scenario involves using the STUSB4500QTR to negotiate power delivery, which then provides power to the BQ25180YBGR for battery charging.
Given the components and connections you have in your project, here's how you might connect them together. These suggestions are based on a typical application; you may need to adjust them according to your specific project requirements.
  1. VBUS Supply from USB to Charger:
    • The 'VBUS' from a USB connector (presumably through IC1 VBUS or similar pin) should be connected to the 'IN' pin of U3 to provide the input source for battery charging. This assumes you're using IC1 to negotiate power over USB-C and provide a controlled VBUS for charging.
    • Already in your design, IC1 VBUS is taken from Net 1d87530105d95943751cb5c191f2b077. You would route this VBUS directly to U3 IN (pin 2).
  2. Enable Signal:
    • If needed, you can use the 'VBUS_EN_SNK' pin from IC1, which is controlled by the USB PD negotiation outcome, to enable U3. However, U3 does not have a direct 'enable' pin, implying it's always enabled as long as there is power. Thus, this step may not be required.
  3. I2C Communication (Optional):
    • Both IC1 and U3 support I2C communication. If you need to configure or monitor the charger IC via the USB PD controller, you would connect the I2C lines (SCL and SDA) between them. However, based on your current design, it does not seem like direct I2C communication between IC1 and U3 is contemplated. If this changes, you would connect IC1: SCL (pin 7) to U3: SCL (pin 3), and IC1: SDA (pin 8) to U3: SDA (pin 8). Note that proper pull-up resistors should be added to each I2C line (typically $4.7k$ to $10k$ ohms to the I2C bus voltage level).
  4. Ground Connection:
    • Connect IC1 (GND, pin 25) to U3 (GND, pin 5) to ensure that they have a common ground reference.
Given these observations and connections, your project would look as follows (assuming the VBUS path is through other connections like a USB connector to IC1 and then to U3):
  • Connect IC1:VBUS_VS_DISCH (pin 18) to U3:IN (pin 2). (This assumes 'VBUS_VS_DISCH' refers to a VBUS related pin capable of providing power to the charger; if not, use the appropriate VBUS output from IC1.)
Note: The actual IC1 pin to use for providing VBUS to U3 might differ based on your design and how IC1 is configured. If IC1:VBUS_VS_DISCH (pin 18) does not directly provide VBUS power, ensure that the VBUS power path from your USB connector through IC1 is properly routed to U3:IN.
2y
@copilot how to connect STUSB4500QTR and NRF52820-QDAA-R?
2y
To connect the STUSB4500QTR (IC1) and the NRF52820-QDAA-R (U2) effectively, you will likely want to focus on ensuring power management and communication interfaces are correctly set up between these two components. Given the components and their functionalities, I'll assume you want to manage power and possibly use an I²C communication interface between them. The STUSB4500 is a USB Power Delivery controller, and the NRF52820 is a multiprotocol wireless SoC (System on Chip) with I²C capabilities.
Here are connection suggestions based on common practices:
Power Connections:
  • Ensure that both IC1 and U2 are supplied with the correct voltages. The STUSB4500QTR typically operates at 5V provided over USB, and the NRF52820-QDAA-R has flexible voltage requirements but commonly uses 3.3V for its operations. You might need a voltage regulator in between if your setup requires the NRF52820 to operate at a lower voltage than what USB provides.
I²C Communication:
  • Connect IC1 (STUSB4500QTR): SCL (Pin 7) to U2 (NRF52820-QDAA-R): P0.20 (or another GPIO configured as I²C SCL in your firmware).
  • Connect IC1 (STUSB4500QTR): SDA (Pin 8) to U2 (NRF52820-QDAA-R): P0.17 (or another GPIO configured as I²C SDA in your firmware).
Additional Important Connections:
  • Connect IC1 (STUSB4500QTR): VDD (Pin 24) to a 3.3V power source suitable for digital ICs. If U2's VDD sources are used, ensure they can supply enough current.
  • Connect all ground pins (GND) of both IC1 and U2 together to ensure they have a common ground reference.
Please note that the NRF52820-QDAA supports a wide range of peripherals and functionalities. Your use case might require additional or different connections, especially if you aim to utilize other features of the NRF52820 like GPIOs, ADCs, NFC, or the wireless capabilities.
This connection scheme makes several assumptions about your project's requirements and the operation environment. You may need to adjust these suggestions based on your specific project needs and the power source you're planning to use. Always consult the datasheets and application notes for detailed information on interfacing these components and for information on required external components (e.g., pull-up resistors for I²C bus).
2y
Someone is typing...
5
C1
Capacitance
0.1uF
U2
R5
Resistance
56 Ω
C3
Capacitance
0.1uF
LED1
C2
Capacitance
0.1uF
IC1
R1
Resistance
10MΩ
J1
J2
J3


  • 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
  • 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 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
  • Ground
    A common return path for electric current. Commonly known as ground.
  • Terminal
    Terminal
    An electrical connector acting as reusable interface to a conductor and creating a point where external circuits can be connected.
  • 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
  • RMCF0805JT47K0
    General Purpose Thick Film Standard Power and High-Power Chip Resistor 47 kOhms ±5% 0.125W, 1/8W Chip Resistor 0805 (2012 Metric) Automotive AEC-Q200 Thick Film Features: - RMCF – standard power ratings - RMCP – high power ratings - Nickel barrier terminations standard - Power derating from 100% at 70ºC to zero at +155ºC - RoHS compliant, REACH compliant, and halogen free - AEC-Q200 compliant
  • 875105359001
    10 µF 16 V Aluminum - Polymer Capacitors Radial, Can - SMD 30mOhm 2000 Hrs @ 105°C #commonpartslibrary #capacitor #aluminumpolymer #radialcan
  • CTL1206FYW1T
    Yellow 595nm LED Indication - Discrete 1.7V 1206 (3216 Metric)
  • 1070TR
    Battery Holder (Open) Coin, 20.0mm 1 Cell SMD (SMT) Tab bate or batt #forLedBlink
Bluetooth Pen 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

Digi-Key

$4.17–$8.25

LCSC

$7.79–$7.81

Mouser

$7.69

Controls