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

Ready.


U2
how is IC1 connected to U1

@copilot how is IC1 connected to U1
2y
IC1 (FT232RL-REEL by FTDI) seems to be connected to U1 (STM32H743XIH6 by STMicroelectronics) as follows:
  • IC1 USBD+ (USB data positive) is connected to J1 D+ (Connector J1 D+ signal)
  • IC1 USBD- (USB data negative) is connected to J1 D- (Connector J1 D- signal)
It's important to note that J1 connector is also tied to other components and interfaces, such as the VBUS line to IC1 (IC1 DCR) and the U1 VDD line.
However, there's no direct connection between IC1 and U1 in your schematic description. Usually, in such setups, the FT232RL (IC1) would be connected to a UART interface of the STM32H743XIH6 (U1). This connection could be done via TXD and RXD lines, but this is not present in the project text description you have provided.
Please note that it's essential to make a connection between IC1 and U1 for correct data communication between them, unless you are using some other shared protocol or a proper connected device that the schema doesn't indicate.
2y
take action and perform the wiring
2y
If you want to connect IC1 (FT232RL-REEL) to U1 (STM32H743XIH6) for UART communication, you might connect the TXD and RXD lines as follows:
  • IC1 TXD (Transmit Data) to U1 PD9 (UART RX Input)
  • IC1 RXD (Receive Data) to U1 PD8 (UART TX Output)
Before proceeding with these actions, please ensure you double-check your device datasheets and UART settings, such as baud rate, parity, and stop bits.
Note: In UART communication, it's important to connect TXD (Transmit Data) of one device to the RXD (Receive Data) of the other and vice versa for the data to be correctly received.
Also, make sure to connect GND of IC1 to VSS (Ground) pin of U1 if not already done, grounding is important to have a common reference point.
Please proceed to your FLUX dashboard to perform the wiring.
Please ensure to validate these changes as this is based on some assumptions such as the purpose of the connection is for UART communication and that pins U1 PD8 and U1 PD9 are configured for UART.
2y
how is this wired to the processor

@copilot how is this wired to the processor
2y
It appears from the description given that no electrical connections have yet been made in this project. Therefore, the GPS module (NEO-6M-GPS) is not currently wired to the microprocessor (STM32H743XIH6).
Since both devices support UART communication, you can wire them together using this protocol.
Here is a suggestion on how to proceed:
  • Connect the TXD1 (pin 20) of the GPS module (U2) to a UART RXD pin on the STM32H743XIH6 microprocessor (U1). You can use USART3's RX (PC11, pin 205) for this.
  • Connect the RXD1 (pin 21) of the GPS module (U2) to a UART TXD pin on the STM32H743XIH6 microprocessor (U1). You can use USART3's TX (PC10, pin 206) for this.
  • Connect the GND pins of both the GPS module (U2) and the microprocessor (U1) together to ensure they have a common ground reference.
  • You'll also need to provide power to the GPS module (U2). Connect VCC (pin 23) to a 3.3V power source, and ensure all the ground pins are connected to ground.
These connections will allow the microprocessor to send and receive data from the GPS module. Remember to configure the UART pins appropriately in your firmware code.
Note: This suggestion assumes that USART3 interface of the STM32H743XIH6 is available for use and isn't being utilized for another peripheral connection.
Bear in mind that the STM32H743XIH6 also supports SPI and I2C, so you have alternatives if the USART3 interface isn't available.±
2y
1
what should be used so the chip can be powered by useb C

@copilot what should be used so the chip can be powered by useb C
2y
To power the STM32 microcontroller (U1) and NEO-6M GPS module (U2) using USB-C, you require a USB-C to USB interface chip such as the "FT232RL" from FTDI or the "CP2102N" from Silicon Labs. These chips convert the USB signal to UART which can be understood by the microcontroller and the GPS module.
You will need to connect the following pins on your new USB-C to UART bridge:
  • Connect the VCC or 3V3 output (depending on your specific chip) to the VCC pin of U2 and PC10 pin of U1. This will provide power to your entire circuit. Do check however if both components support the same voltage levels.
  • Connect GND from the USB-C to UART bridge to the GND pins on both U1 and U2.
  • Connect the TX pin from the converter to the RXD1 (receiver) pin of U2 and PD8 pin of U1.
  • Connect the RX pin from the converter to the TXD1 (transmitter) pin of U2 and PD9 pin of U1.
This is a rough guide and does not take into account any specific electrical characteristics of your circuitry. Please adjust this as per your individual circuit requirements.
Moreover, remember you need to also have appropriate decoupling capacitors near the power supply pins of both U1 and U2, as per the datasheet recommendation.
Note: Be aware some USB-C to UART bridges might not be able to supply enough current for your entire circuit. You should check the absolute maximum and typical supply currents for all of your components and make sure the bridge can support it.
Also, please remember to use appropriate protection circuits like fuses (especially if you're taking power from a USB port) and components such as ESD protection diodes for the USB data lines.
2y
5
how would you wire ic2 to u1

@copilot how would you wire ic2 to u1
2y
Based on the given project description, the IC2 MPU-6050 (Gyro + Accelerometer sensor) and U1 STM32H743XIH6 (microcontroller) could connect using I2C protocol. Here are the recommended connections:
  • IC2 SDA (Pin 24) to U1 appropriate SDA pin (for instance, PB9 for I2C1)
  • IC2 SCL (Pin 23) to U1 appropriate SCL pin (for instance, PB8 for I2C1)
  • IC2 VDD (Pin 13) to U1 VDD (Example pins: 1,2,3 and so on)
  • IC2 GND (Pin 18) to U1 VSS (Example pins: 106,107,108 and so on)
Unfortunately, U1 doesn't have the pin numbers for specific SDA and SCL pins provided in the project description, so I can't give you the exact pin numbers.
The connections above are assuming a I2C connection. If you want to use another interface (like SPI for instance), the pins to connect will change. Please correct me if you want to use another communication protocol.
Keep in mind that if you want to use the interrupt (INT) or the auxiliary I2C (AUX_DA, AUX_CL) of the MPU-6050 (IC2), you would also need to connect these to the appropriate pins on the STM32 (U1).
2y
11
how to connect J1 to IC1

@copilot how to connect J1 to IC1
2y
To connect the USB connector (designated as J1) to the FT232RL USB to serial UART interface IC (designated as IC1), you may want to proceed as follows:
Assuming that J1 represents a USB connector, considering the pins mentioned earlier:
  • J1's D- (pin name: D-) to IC1's USBD- (pin 16)
  • J1's D+ (pin name: D+) to IC1's USBD+ (pin 15)
  • J1's GND (pin name: GND) to IC1's Gnd (pin 7)
  • J1's VBUS (pin name: VBUS) to IC1's VCCIO (pin 4) and 3V3OUT (pin 17)
Please note that you should also connect the 3V3OUT (pin 17) of IC1 to VCCIO (pin 4) of the same IC1 to provide the power supply for the communication interface.
These connections enable data transmission between the connector and the FT232RL chip. The D+ and D- lines are the differential data lines for the USB communication. VBUS is the power from the USB port, which will be used to power the IC1 (FT232RL).
Please make sure to check the datasheets of your specific components to confirm the pin mappings before making the connections.
2y
6
explain how to connect U1 to U2

@copilot explain how to connect U1 to U2
2y
Sure, based on your schematic, you’ve already made some connections between U1 (STM32H743XIH6) and U2 (NEO-6M-GPS), specifically:
  1. U1's PC10 is connected to U2's VCC.
  2. U1's PC11 is connected to U2's V_BCKP.
Assuming you want a typical UART interface between the STM32 (U1) and NEO-6M (U2), you'd also need to connect the RXD and TXD pins. Unfortunately, U2's RXD1 and TXD1 pins aren't yet connected to U1.
Yet, the exact pins to use on U1 depend on what COMx peripheral you're using, and I don't have that information from you yet. STM32 microcontrollers typically have multiple serial interfaces, so if you wanted to use USART3 for example, and you're not using remapping, you might choose to connect it this way:
  • U2.Pin(TXD1) --> U1.Pin(PD9) [USART3_RX]
  • U2.Pin(RXD1) --> U1.Pin(PD8) [USART3_TX]
This is an assumption for the USART3 peripheral without remapping. Please check STM32's reference manual for the correct USART pinouts depending on your individual configuration.
Finally, U2's GND should be connected to one of U1's VSS pins to establish a common ground.
So, to complete the connections between U1 and U2:
  1. Link U2's TXD1 to U1's PD9 (or your chosen USARTx_RX).
  2. Connect U2's RXD1 to U1's PD8 (or your chosen USARTx_TX).
  3. Finally, remember to join U2's GND to one of U1's VSS pins.
2y
4
how is ic1 and j1 connected

@copilot how is ic1 and j1 connected
2y
It appears in the project text that there is no direct connection indicated between IC1 (the FT232RL-REEL, which is a USB to serial UART interface) and J1 (a USB Type-C connector).
If the plan is to connect them for a USB-to-serial conversion circuit, typically, the data lines of IC1 (pins: USBD+ and USBD-) would need to be connected to the corresponding data lines of the USB Type-C connector (J1's pins: D+ and D- respectively).
Please specify if further or specific connections are required between these two components.
2y
the J1 will also supply power to the IC1 and U1. how are they wired
2y
The power would usually be supplied from the USB Type-C connector's VBUS pin, which typically carries the 5V power line. The wiring to the power supply lines would be as follows:
For IC1 (FT232RL-REEL):
  • Connect J1's VBUS pin (pin 15 & 16) to IC1's VCCIO (pin 4) & VCC (pin 20).
For U1 (STM32H743XIH6):
  • An appropriate voltage regulator should be used to convert the 5V from the VBUS to the operating voltage of U1 which is typically 3.3V. After the voltage regulator, connect to the various VDD pins of U1 (pins: 1,2,3,4,5,6,7,8,9,10,11,12,13,14).
Remember to connect the ground of each component to a common ground. For IC1, this would be GND (pin 7, 18, 21), and for U1, this would be the multitude of VSS pins. Connect these to the GND (pin 5 & 6) of J1.
Please note: Ensure that VBUS can safely supply the combined current to IC1 and U1, along with any other components powered from this line. You may need a decoupling capacitor close to the power pins of the components to deal with any potential voltage ripples or spikes.
Bear in mind these assumptions about typical values and always confirm with datasheets of the specific components you are using. You might need to adjust values accordingly depending on those datasheets.
Also, for complex ICs design like with U1 (STM32H743XIH6), additional power configuration (like supply decoupling and filtering) might be needed according to STMicroelectronics recommendations. Always refer to the IC's datasheet or reference designs.
2y
take action
2y
I'm sorry for the confusion, but I can only guide, suggest changes or offer advice based on my knowledge and understanding, I cannot physically alter or make changes to a physical circuit or a software-based project.
If you are using Flux.ai, you have the possibility of adding or modifying the circuit components based on the suggestions provided. Its intuitive environment is designed to help you plan and implement changes to your circuits.
It's crucial to verify your modifications by simulating the circuit and always double-check the datasheets of your components to avoid any potential issues. If there are any areas of uncertainty or if you have further questions, please don't hesitate to ask.
2y
7
how would you wire IC1 to U1

@copilot how would you wire IC1 to U1
2y
Given the project description, IC1 is an FT232RL-REEL and U1 is an STM32H743XIH6. These two ICs can communicate via UART so here is a possible connection scheme for them:
  • Connect IC1 TXD (pin 1) to U1 PD9 (pin 191). This will allow IC1 (FT232) to transmit to U1 (STM32).
  • Connect IC1 RXD (pin 5) to U1 PD8 (pin 192). This will allow U1 (STM32) to transmit to IC1 (FT232).
  • Connect IC1 VCC (pin 4) to the power net supplying 3.3V or 5V, depending on your board's requirements.
  • Connect IC1 GND (pins 7, 18, and 21) to the ground net of your circuit.
  • Connect IC1 USBD+ (pin 15) and IC1 USBD- (pin 16) to the D+ and D- pins of your USB interface (e.g. USB jack or USB cable).
Please note that this is a basic connection scheme, and depending on the specifics of your project, other connections might be necessary, e.g. for control lines like RTS/CTS or for power management. You might also want to connect your reset line. Furthermore, make sure that your power net fulfills the supply voltage requirements of the FT232RL-REEL (3.3V or 5V), and that the UART pins PD8 / PD9 of the STM32 are not used by any other peripherals in your project. This is based on usual practices, please cross-check with the datasheets of the ICs and your project requirements.
Also, you may need some external components (like decoupling capacitors for the power supply pins) according to the IC's datasheet or your own project requirements. Always be sure to check datasheet guidelines when creating your PCB layout and wiring.
2y
@copilot how would you wire IC2 to U1
2y
IC2 in your project is an MPU-6050, which is a 6-axis gyroscope and accelerometer, and U1 is an STM32H743XIH6, which is a microcontroller with I2C interface. Here's how to connect them:
  1. Connect IC2 SDA (Pin 24) to U1 PB9 (Pin 223). This is for the I2C data line.
  2. Connect IC2 SCL (Pin 23) to U1 PB8 (Pin 224). This is for the I2C clock line.
  3. Connect IC2 VDD (Pin 13) to a 3.3V power source.
  4. Connect IC2 GND (Pin 18) to the ground net in your circuit.
  5. If you want to use the interrupt feature of the MPU-6050, connect IC2 INT (Pin 12) to an available interrupt pin on the STM32, for example U1 PG8 (Pin 88).
Please note that the I2C bus requires pull-up resistors which are often connected to the 3.3V power line. If they are not already present elsewhere on your board, you will need to add them to both the SDA and SCL lines. Typical values are from 1.8 kOhm to 10 kOhm, but it highly depends on your bus speed and line capacitances. MPU-6050 normally operates at 3.3V, so ensure your power supply meets this level. This connection scheme assumes U1's PB9 and PB8 pins are not utilized by another peripheral and are configured for I2C communication.
Make sure you cross-check SDA and SCL pin connectivity with the datasheets and design requirements of both IC2 (MPU-6050) and U1 (STM32H743XIH6).
Also, the VLOGIC pin (Pin 8) of the MPU-6050 should be connected to the same voltage level as the I2C lines, which is 3.3V in this case. AD0 pin (Pin 9) is the I2C bus address selector for the MPU-6050 and it can be connected to VLOGIC (for high und thus '1') or GND (for low and thus '0'), depending on the desired address.
2y
10
how is IC2 connected to U1

@copilot how would you wire them together
2y
Based on the information provided in the project, it appears several of the components are already wired together. Here's a summary of the connections between different components as per the project provided:
  1. IC1 (FT232RL-REEL) and J1
    • IC1 USBD+ - J1 D+
    • IC1 USBD- - J1 D-
  2. U2 (NEO-6M-GPS) and U1 (STM32H743XIH6)
    • U2 TXD1 - U1 PD9
    • U2 RXD1 - U1 PD8
    • U2 VCC - U1 PC10
    • U2 V_BCKP - U1 PC11
    • U2 GND - U1 VSS
  3. J1 and IC1 (FT232RL-REEL)
    • J1 VBUS - IC1 DCR
This wiring forms the basis of the existing connections in the project. However, you may need to incorporate other components or make more connections based on your circuit requirements. Note that exact placements of the components on the PCB and routing the traces should be optimized for a real layout in terms of signal integrity and manufacturing constrains.
2y
how would you wire them together
2y
take action
2y
@copilot how is IC2 connected to U1
2y
From the given project information, it seems that the MPU-6050 sensor (IC2) doesn't have any direct connections to the STM32H743XIH6 MCU (U1). Therefore, if you need to interface these devices, you might need to make wiring adjustments in your circuit.
Typically, you would connect MPU-6050's SDA (Serial Data line) and SCL (Serial Clock line) to I2C communication pins of the STM32 for data exchange. However, always consult relevant datasheets and documents to ensure connection compatibility.
2y
9
please explain what U2 does.

@copilot please explain what U2 does.
2y
U2 is a NEO-6M GPS module manufactured by U-blox, which is a GPS receiver chipset. This module receives signals from multiple GPS satellites to calculate precise positioning data including longitude, latitude, and altitude.
This is achieved by comparing the time a signal was transmitted by a satellite with the time it was received. The time difference tells the receiver how far away the satellite is. With signals from at least four satellites, the receiver can calculate its position in three dimensions (longitude, latitude, altitude).
The NEO-6M GPS module has various pins for different functionalities:
  • CFG_GPS0/SCK, MISO/CFG_COM1, and MOSI/CFG_COM0 for SPI communication protocol
  • RXD1 and TXD1 for UART communication protocol
  • SDA2 and SCL2 for the I2C communication protocol
  • EXTINT0 is an external interrupt pin
  • SS_N can be used for slave select when using SPI communication protocol
  • TIMEPULSE output provides a pulse per second signal
  • USB_DM and USB_DP for USB differential data lines
  • V_BCKP for battery backup power input for the internal RTC
  • VCC, VCC_RF, and VDDUSB for powering the module
  • RF_IN for connecting the antenna
  • GND pins are for grounding
  • The remaining pins are reserved or have specific functions according to the NEO-6M's datasheet.
Generally, U2 is used in GPS-based navigation, tracking, mapping, and timing services.
2y
2
please explain what U1, U2, U2 V\_BCKP - U1 PC11, U2 VCC - U1 PC10 do.

@copilot please explain what U1, U2, U2 V_BCKP - U1 PC11, U2 VCC - U1 PC10 do.
2y
Sure! Below is a brief explanation of each component and net:
  • U1: U1 is the microcontroller, a type of miniaturized computer that can execute programmed instructions. In this project, U1 is the STM32H743XIH6 from STMicroelectronics. It is the core of your hardware and could be thought of as the brain controlling the operations of other components.
  • U2: U2 is a GPS module, specifically, the NEO-6M-GPS from U-blox. It is used to obtain GPS data, which involves receiving signals from several satellites to determine the receiver's geographical location.
  • U2 V_BCKP - U1 PC11: This indicates a net that is connecting the "V_BCKP" pin of U2 (the GPS module) with the "PC11" pin of U1 (the microcontroller). The net represents an electrical connection between these two points. The V_BCKP is the backup power supply to maintain the battery-backed RAM and real-time clock of the GPS module. The PC11 pin on STM32H743XIH6 is a GPIO (General Purpose Input Output) pin and it might be used to monitor the backup voltages status, we're assuming usage based on the pins' typical applications as the project details does not specify its exact functionality.
  • U2 VCC - U1 PC10: This is a net connecting the "VCC" pin of U2 with the "PC10" pin of U1. VCC is usually the supply voltage pin. In this case, it is probably used to power the GPS module. PC10 on the microcontroller is another GPIO pin dedicated for this connection and its specific functionality would be based on the firmware of the microcontroller.
These connections are normal in many circuits where a microcontroller is used to control, monitor, and communicate with a GPS module. The specific functionality of PC10 and PC11 on the microcontroller would be defined by the firmware uploaded onto the microcontroller.
2y
3
New Comment

12
New Comment

12
U2 TXD1 - U1 PD9


  • 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

Reluctant Brown R2-D2

Reluctant Brown R2-D2
Description

Created
Last updated by yousifq
1 Contributor(s)
yousifq

Controls

Properties

Availability & Pricing

DistributorQty 1
Digi-Key$45.75–$52.95
LCSC$136.09
Mouser$54.81

Assets