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

Help me brainstorm ideas
Design a block diagram
Find parts in the library
Read a datasheet
Simulate a circuit
New Subsystem Wizard
explain this project.

@copilot explain this project.
1y
This project is currently untitled and doesn't have any explicit electrical connections or components included yet. It seems to be a blank canvas ready for new circuit designs or schematic layouts.
Here's a summary of what we have:
  • Project Status: Untitled, with no components or connections.
  • Position on Canvas: The comment thread position suggests a specific point on the schematic editor, but there aren't any details provided on what that might refer to beyond a geographical coordinate within Flux.
If you have any components or circuitry ideas in mind that you'd like to explore or specific requirements to discuss, feel free to share, and we can start building from there!
1y
  1. Ultra Sonic diffuser module
1y
An ultrasonic diffuser module is typically used in applications like aroma diffusers, humidifiers, or other devices where fine mist generation is required. The module uses ultrasonic waves to turn water (often with essential oils) into a fine mist, which is then dispersed into the air.
To create a project involving an ultrasonic diffuser module, you'll typically need the following components and considerations:
Components:
  1. Ultrasonic Mist Maker Module: This is the core component that uses ultrasonic technology to generate mist.
  2. Power Supply: Typically, these modules require a DC power source, often around 12V to operate effectively.
  3. Water Reservoir: A container to hold the water that will be atomized.
  4. Fan (optional): To disperse the mist more efficiently.
  5. Control Circuitry: To enable or disable the misting action either manually, automatically, or remotely.
Basic Connections:
  • Power Supply: Connect the power supply to the ultrasonic module according to its specifications.
  • Control Elements: Integrate any switches or controllers to manage the operation.
Additional Considerations:
  • Temperature Sensor: To monitor the temperature as it's crucial to ensure the module doesn't overheat.
  • Water Level Detector: To ensure there is always enough water for mist production and to prevent damage from running dry.
  • Housing Design: Proper housing to safely contain all elements while allowing adequate ventilation.
Could you let me know if you're planning to incorporate this module into an existing system or starting a new design from scratch? If you provide more details, such as the module you have in mind or specific features, I can help tailor the advice further!
1y
On ESP32-WROOM-32 microcontroller
1y
Integrating an ultrasonic diffuser module with an ESP32-WROOM-32 microcontroller allows you to add features like remote control via Wi-Fi or Bluetooth, automated misting schedules, and sensor-based operations. Here's a high-level outline of how you might set up this project:
Components Needed:
  1. ESP32-WROOM-32: Main microcontroller for handling control logic and connectivity.
  2. Ultrasonic Mist Maker Module: For generating mist.
  3. Power Supply: Typically 12V for the mist maker, and 3.3V or 5V for the ESP32.
  4. Transistor or Relay Module: To switch the power for the mist maker on and off.
  5. Temperature Sensor (Optional): For monitoring the module's temperature.
  6. Water Level Sensor (Optional): To avoid running the mist maker dry.
  7. Fan (Optional): To improve mist dispersion.
  8. Resistors/Cables/Connectors: For completing your circuit connections.
Connections Overview:
  • Power Supply:
    • Power the ESP32 with a 3.3V or 5V source.
    • Use a separate 12V supply for the ultrasonic module.
  • Control Circuit (using a transistor):
    • Connect a GPIO pin on the ESP32 to the base of a NPN transistor (or use an appropriate relay) to control the mist maker.
    • Connect the collector of the transistor to the mist maker's negative terminal.
    • Connect the collector emitter to ground and a pull-down resistor if needed.
    Example connection:
    • Connect ESP32 GPIO: $$ to Transistor:Base.
    • Connect Ultrasonic_Mist_Maker:Negative to Transistor:Collector.
    • Connect Transistor:Emitter to Ground.
  • Sensors (Optional):
    • Connect temperature and water level sensors to the appropriate GPIO pins.
Software Considerations:
  • Code for GPIO Control: Use the ESP32's GPIO capabilities to control the misting based on conditions (e.g., temperature, humidity, or manual input).
  • Connectivity: Use Wi-Fi/Bluetooth for remote control if needed.
  • Libraries: Utilize relevant libraries for handling sensors and networking features.
Additional Steps:
  • Develop software logic to handle misting intervals, sensor readings, and connectivity instructions.
  • If using Wi-Fi, determine if you want to control it via a web interface or mobile app.
Do you have any specific features in mind, or would you like help with a specific area like code examples or detailed schematic layouts?
1y
Aroma diffuser circuit: consider an h bridge or MOSFET driver circuit for controlling the diffuser motor
1y
To incorporate motor control into your aroma diffuser circuit using an H-bridge or a MOSFET driver, let's explore the basic components and configurations. This will allow for precise control over the diffuser's motor, enabling features like speed adjustments or directional control if necessary.
Components Required:
  1. ESP32-WROOM-32: Central processing unit for control logic.
  2. Motor: Fan or pump motor to create airflow or pressure.
  3. H-Bridge IC (e.g., L298N): For motor direction and speed control.
  4. MOSFET Driver Circuit: As an alternative to H-Bridge for high-efficiency control.
  5. Diodes: For protection against back emf in motor circuits.
  6. Power Supply: Ensure the voltage and current rating matches the motor and other components.
H-Bridge Configuration:
  • Components: L298N or similar H-Bridge allows control of a DC motor.
  • Capabilities: Provides bi-directional control and can manage motor speed with PWM output from the ESP32.
Key Connections:
  • Power:
    • Connect the power supply to the H-bridge VCC and ground.
    • Connect ESP32 GPIO pins to the H-bridge input pins for direction and PWM speed control.
  • Motor:
    • Connect Motor:+ to H-Bridge:OUT1.
    • Connect Motor:- to H-Bridge:OUT2.
  • ESP32 Control:
    • Connect ESP32 GPIOs to H-Bridge:IN1 and H-Bridge:IN2 for direction control.
    • Connect ESP32 PWM GPIO to H-Bridge:EN for speed control.
MOSFET Driver Configuration:
  • Components: N-channel MOSFETs can be used to control the motor.
  • Capabilities: A MOSFET driver allows you to control high-current loads efficiently.
Key Connections:
  • Power:
    • Connect power to the motor through the MOSFET.
    • Ensure the gate of the MOSFET is connected to a suitable GPIO pin of ESP32.
  • Motor:
    • Connect Motor:+ to power.
    • Connect Motor:- to MOSFET:Source.
    • Connect MOSFET:Drain to Ground.
  • ESP32 Control:
    • Connect an ESP32 GPIO to MOSFET:Gate to control the motor speed with PWM.
Considerations:
  • Protection: Use diodes in parallel with the motor to protect against back emf.
  • PWM: Implement PWM control in the ESP32 code to manage motor speed.
  • Load Characteristics: Check motor specifications to ensure the driving solution is apt.
Code Implementation:
  • Use the ESP32's GPIO and PWM functionalities to control motor speed and direction dynamically.
Do you have any preferences or existing components you'd like to use for the diffuser motor control? Would you need more detailed schematics or code examples?
1y
Audio connections: connect microphone amplifier output to ESP 32 DAC/PWM output to the audio amplifier input for the speaker
1y
To set up audio connections where you route a microphone's amplified output to an ESP32 and then send processed or direct audio data from the ESP32 to a speaker via an audio amplifier, you'll need to consider both input and output handling:
Components Needed:
  1. Microphone Module with Amplifier: To capture audio inputs.
  2. ESP32-WROOM-32: For processing the audio signal.
  3. DAC or PWM Output: Use the ESP32's built-in capabilities to generate audio signals.
  4. Audio Amplifier Module: To drive the speaker based on the ESP32's output.
  5. Speaker: To play back the audio.
  6. Capacitors/Resistors/Cables: For signal conditioning and connections.
Connection Steps: Microphone Input to ESP32:
  • Microphone Amplifier Output:
    • The output of the microphone amplifier should connect to one of the ESP32's ADC (Analog-to-Digital Converter) pins.
    • Connection:
      • Connect the Microphone_Amp:Output to ESP32:ADC1_$$.
  • ESP32 Configuration:
    • Configure the ADC to read audio input at an appropriate sampling rate.
    • Apply any audio signal processing as required (e.g., filtering, amplification, etc.).
ESP32 Output to Audio Amplifier:
  • DAC/PWM Output Configuration:
    • Use the DAC output pins or implement a PWM signal to generate audio from the ESP32.
    • If using PWM, consider low-pass filtering to smooth the signal.
    • Connection:
      • For DAC: Connect ESP32:DAC1 (GPIO25) or DAC2 (GPIO26) to Audio_Amp:Input.
      • For PWM: Connect an ESP32 PWM capable GPIO to a low-pass filter and then to Audio_Amp:Input.
  • Amplifier to Speaker:
    • Amplify the processed audio signal to drive your speaker.
    • Connection:
      • Connect Audio_Amp:Output to Speaker:+ and Speaker:- terminals respectively.
Additional Considerations:
  • Signal Levels: Ensure all connections respect the voltage levels acceptable by the ESP32 and other components to prevent damage.
  • Filtering: Implement necessary filtering stages to clean the ADC input and PWM output if used.
  • Latency and Processing: Consider real-time processing needs and any latency introduced by the ADC/DAC stages.
Software Implementation:
  • Configure the ADC to sample audio and process signals as needed.
  • Use ESP32 libraries to handle DAC output or PWM modulation for audio signals.
If you need example code or further details on setting up the ADC, DAC, or PWM on the ESP32, feel free to ask!
1y
PAM8403 audio amplifier
1y
The PAM8403 is a popular 3W stereo audio amplifier that can be used to drive small speakers in projects requiring audio amplification. It's compact, efficient, and operates on a low voltage supply, typically around 5V. Here's how you can integrate it into your project with an ESP32:
Components Needed:
  1. ESP32-WROOM-32: To process audio signals.
  2. PAM8403 Audio Amplifier Module: To drive the speakers.
  3. Speaker(s): To output the sound, usually 4-8 ohms.
  4. Power Supply: 5V supply for the PAM8403.
Connections: From ESP32 to PAM8403:
  • Audio Source: Use the ESP32’s DAC output or a filtered PWM signal as the audio source.
  • Stereo Connection:
    • Left Channel:
      • Connect ESP32:DAC1 (GPIO25) or a PWM_gpio (with a low-pass filter) to PAM8403:INL.
    • Right Channel:
      • Connect ESP32:DAC2 (GPIO26) or another PWM_gpio (with a low-pass filter) to PAM8403:INR.
From PAM8403 to Speakers:
  • Speaker Connections:
    • Connect PAM8403:OUTL+ and PAM8403:OUTL- to the left speaker terminals.
    • Connect PAM8403:OUTR+ and PAM8403:OUTR- to the right speaker terminals.
Power and Ground:
  • Connect the PAM8403 VCC to a 5V power source.
  • Connect the GND of PAM8403 to the common ground with the ESP32 and power source.
Additional Considerations:
  • Signal Level Matching: Ensure the DAC output or PWM signal level matches the acceptable input range for the PAM8403 to avoid distortion.
  • Low-pass Filtering: If using PWM, use a low-pass filter to convert PWM to a suitable analog signal for the PAM8403.
  • Heat Management: Although PAM8403 is efficient, ensure there's adequate ventilation in your setup to dissipate heat.
Software Setup:
  • Audio Processing: Sample audio inputs with the ESP32’s ADC and output processed audio via its DAC or PWM.
  • Libraries: Utilize libraries to handle audio processing and PWM generation effectively within the ESP32's software environment.
If you need further details on specific aspects like filtering, sample code, or details on the PWM setup for audio, feel free to ask!
1y
Power supply: lithium ion battery will power the entire circuit with a usb charging circuit, include a voltage regulator to step-down the battery voltage to 3.3V to the ESP 32
1y
To power your entire circuit using a lithium-ion battery while ensuring stable operation for the ESP32, you'll need a few additional components. Here’s how you can integrate the battery, charging circuit, and voltage regulation into your project:
Components Required:
  1. Lithium-Ion Battery: Provides portability and a high energy density.
  2. USB Charging Circuit (e.g., TP4056): Charges the lithium-ion battery safely.
  3. Buck Converter (Voltage Regulator): Steps down the battery voltage to 3.3V for the ESP32.
  4. Protections/Cables/Connectors: Ensure safe and reliable connections.
Connections Overview: Battery Charging with TP4056:
  • Battery Connections:
    • Connect Battery:Positive to TP4056:BATT+.
    • Connect Battery:Negative to TP4056:BATT-.
  • USB Input:
    • Connect a USB 5V source to TP4056:IN+ (VCC) and IN- (GND).
Voltage Regulation:
  • Buck Converter (e.g., AMS1117-3.3V or similar): To step down battery voltage (typically 3.7V) to 3.3V.
    • Connections:
      • Connect Battery:Positive to Buck_Converter:Input.
      • Connect Buck_Converter:Output to ESP32:VCC (3.3V input).
      • Connect Ground of Buck_Converter to Ground of ESP32 and battery.
Powering Other Components:
  • PAM8403 and Miscellaneous Components:
    • Power the PAM8403 directly from the battery or another regulated supply if separate voltages are required (e.g., 5V).
    • Ensure all grounds are shared (common ground) across components for stable operation.
Additional Considerations:
  • Protection Circuit: Consider integrating additional protection like a battery management system (BMS) for overcharge, over-discharge, and short-circuit protection.
  • Heat Dissipation: Ensure voltage regulators have adequate heat dissipation, potentially using a heat sink.
  • Connection Stability: Ensure solid and secure connections, especially for the power components to prevent issues from vibration or movement.
Example Schematic Flow:
  1. Charge Cycle: USB -> TP4056 -> Battery
  2. Discharge Cycle: Battery -> Buck Converter -> ESP32
  3. Audio Circuit: Direct from Battery or Step-down as needed for the PAM8403
If you have any specific queries regarding the setup or need further details on any component, feel free to ask!
1y
Battery connector : include a jst connector for easy battery attachment
1y
Including a JST connector for your lithium-ion battery is a smart choice for secure and easy attachment and detachment. Here’s how you can integrate a JST connector into your existing setup:
Components Needed:
  1. JST Connector (e.g., JST-PH or JST-XH): For secure battery connections.
  2. Lithium-Ion Battery with Compatible JST Plug: Ensure the plug matches your female connector type.
  3. USB Charging Circuit (TP4056)
  4. Voltage Regulator (Buck Converter)
  5. Additional Cables/Soldering Tools: For secure connections.
Connection Steps: JST Connector:
  • JST Female Connector: Solder the female connector on your PCB or in-line with your circuitry.
    • Connections:
      • Connect JST:V+ (Positive lead, typically red)(\text{Positive lead, typically red}) to TP4056:BATT+.
      • Connect JST:GND (Ground lead, typically black)(\text{Ground lead, typically black}) to TP4056:BATT-.
Charging and Regulation Integration:
  1. Battery Charging:
    • As previously connected, route the battery connections through the JST connector to the TP4056 charging module.
    • Connect TP4056 output to the battery, maintaining proper polarity using the JST connector.
  2. Voltage Regulation:
    • From TP4056 output or directly from the JST connection, ensure the power goes into the buck converter.
    • Connect the buck converter output to the ESP32 for a regulated 3.3V supply.
Additional Considerations:
  • Polarity Check: Always check the polarity on the JST connections to prevent irreversible damage or short circuits.
  • Secure Mounting: Ensure the connector is securely mounted to prevent disconnection during movement or vibrations.
  • Cable Strain Relief: Implement strain relief measures (e.g., cable ties) to prevent undue stress on the connectors.
Benefits of JST Connectors:
  • Ease of Use: Allows easy swapping of batteries without soldering.
  • Standardization: Common in hobby and electronics applications, available in various ratings and sizes.
  • Reliability: Provides a secure and positive lock to prevent accidental disconnection.
If you need guidance on selecting specific JST connectors or further details on integrating them with your circuit, feel free to ask!
1y
I am actually designing a compact pcb with an ESP32 for a lamp light and aroma diffuser including audio connections for karaoke (autotuned)..
1y
That sounds like a fascinating and multifunctional project! Combining an ESP32 for smart control, a lamp, an aroma diffuser, and audio capabilities for karaoke with auto-tuning is an ambitious yet achievable design. Here's a structured overview and some suggestions to guide you through the development of your compact PCB:
Key Features to Integrate:
  1. ESP32-WROOM-32: Central processing unit for connectivity and control.
  2. Lamp Control: Manage brightness and color (if RGB) using PWM or a digital method.
  3. Aroma Diffuser Control: Utilize MOSFETs or an H-Bridge for motor or ultrasonic module control.
  4. Audio Input/Output:
    • Microphone Module: For capturing voice input.
    • Auto-Tuning Processing: Software-based audio processing on the ESP32.
    • PAM8403 Amplifier: To drive speakers for the karaoke output.
Power Management:
  • Lithium-Ion Battery: Powers the entire system.
  • USB Charging with TP4056: Recharges the battery.
  • Voltage Regulation: Step down to 3.3V for the ESP32; ensure suitable voltage for other components.
Connectivity and Layout:
  1. JST Battery Connector: For secure battery attachment.
  2. Compact PCB Design: Ensure efficient use of space and minimize trace lengths for signal integrity.
  3. Consider EMI and Thermal Management: Appropriately position components that generate heat and ensure isolation between RF and analog sections.
Audio Integration:
  • Microphone to ESP32 ADC:
    • Amplified microphone module output connected to an ADC pin on the ESP32.
  • Auto-tuning Software:
    • Implement on the ESP32 using available signal processing libraries or develop custom algorithms.
  • Audio Output through PAM8403:
    • DAC or PWM output from ESP32 to PAM8403 input.
    • Configure for stereo or mono based on speaker setup.
Additional Features:
  • Sensor Integration: Optionally integrate sensors to enhance functionality (e.g., humidity or motion sensors).
  • Wireless Connectivity: Utilize ESP32's capabilities for remote control using Wi-Fi or Bluetooth.
  • User Interface: Minimalist buttons or capacitive touch sensors for interface control.
Steps to Get Started on the PCB:
  1. Schematic Design: Clearly define all connections and components in schematic form.
  2. PCB Layout: Use software like Flux to create a compact and efficient PCB layout.
  3. Signal Integrity: Ensure adequate decoupling, grounding, and routing practices.
  4. Prototype and Test: Validate each subsystem before finalizing the design.
If you need more detailed assistance on any part of the design or specific schematics/layout ideas, feel free to ask, and I can provide more targeted guidance!
1y
I would like light to be switched on based on buttons at the bottom but aroma dispenser and audio connections on touch . It's a sleek design and contemporary lamp
1y
Implementing both tactile buttons and capacitive touch controls in a sleek and contemporary design is a great way to enhance user interaction with your device. Here's how you can integrate these controls with the ESP32 to manage the lamp, aroma diffuser, and audio functions:
Components and Features:
  1. ESP32-WROOM-32: Handles all control functions and processing.
  2. Tactile Buttons: Physical buttons for robust interaction, used for lamp control.
  3. Capacitive Touch Sensors: Sleek control method for activating the aroma diffuser and managing audio connections.
  4. LEDs/Lamp: Controlled via PWM for smooth brightness adjustments.
  5. Ultrasonic Diffuser or Motor: For the aroma dispenser, controlled via MOSFETs.
  6. Audio System with PAM8403: For karaoke features.
Integration Steps: Tactile Button Setup for Lamp Control:
  • Components:
    • Use debounced tact switches mounted discreetly at the lamp's bottom.
  • Connections:
    • Connect each button to a suitable GPIO of the ESP32.
    • Use internal pull-up resistors available in the ESP32 to reduce component count.
  • Software Logic:
    • Detect button presses using GPIO interrupts or polling.
    • Implement lamp control logic: on/off toggle or brightness adjustment via an event counter.
Capacitive Touch Sensors for Aroma and Audio:
  • Components:
    • Capacitive touch sensors (or utilize ESP32’s built-in touch-sensitive pins).
  • Connections:
    • Connect touch sensor pads to the ESP32’s touch-capable GPIOs.
  • Software Logic:
    • Use ESP32’s touch sensor library to read capacitive values.
    • Implement state changes or actions based on touch detection.
  • Actions:
    • Start/stop aroma diffuser and control audio processing via software routines.
Design Considerations:
  • Aesthetic: Ensure the tactile buttons are unobtrusive and the touch surfaces are seamlessly integrated into the lamp's design.
  • Material and Finish: Choose materials that complement capacitive touch detection (like glass or acrylic).
  • Feedback: Consider haptic or visual feedback (e.g., an LED indicator) when each function is activated.
Software Implementation:
  • Debounce Logic for Tactile Buttons: Ensure reliable press detection.
  • Threshold Adjustments for Touch Sensors: Tune the sensitivity and response for desired interaction.
  • Unified Control: Integrate controls to respond swiftly and reliably with state management in your software.
Would you be interested in specific touch pin configurations on the ESP32 or further details on wiring the lamp and diffuser controls? Let me know how I can assist further!
1y
I am interested in both
1y
Great! Let's delve into both the tactile button and capacitive touch sensor configurations using the ESP32. I'll provide details for each setup, including wiring and software considerations.
Tactile Button Setup for Lamp Control Hardware Configuration:
  • Button Placement: Integrate the buttons at the bottom part of the lamp for easy access.
  • GPIO Connections: You can use any GPIO pins on the ESP32 for button connections. Here’s a generic setup:
    • Connect Button1 one terminal to ESP32:GPIO0 (for example).
    • Connect Button2 one terminal to ESP32:GPIO2 (for additional controls, like brightness adjustment).
  • Pull-up Resistors: Use the ESP32’s internal pull-up resistors to ensure stable input.
    • The other terminal of each button should connect to ground.
Software Logic:
  • Initialization:

    Cpp


    pinMode(GPIO0, INPUT_PULLUP);
    pinMode(GPIO2, INPUT_PULLUP);
  • Button Reading:
    • Use interrupts or polling to detect button presses.
    • Example loop:

      Cpp


      if (digitalRead(GPIO0) == LOW) {
          // Toggle lamp state
      }
      if (digitalRead(GPIO2) == LOW) {
          // Adjust brightness or change mode
      }
Capacitive Touch Sensors for Aroma and Audio Hardware Configuration:
  • Touch-capable Pins:
    • The ESP32 has dedicated touch pins: T0(GPIO4), T1(GPIO0), T2(GPIO2), T3(GPIO15), T4(GPIO13), T5(GPIO12), T6(GPIO14), T7(GPIO27), T8(GPIO33), T9(GPIO32).
  • Connections:
    • Connect your touch surface (conductive material) to one of the touch-capable GPIOs.
    • Example:
      • Connect Aroma_Diffuser:Touch to ESP32:GPIO4 (T0).
      • Connect Audio_Control:Touch to ESP32:GPIO15 (T3).
Software Logic:
  • Touch Reading:
    • Use the touchRead() function to get touch states.
    • Initialize touch pins and set thresholds.

    Cpp


    void setup() {
        touchAttachInterrupt(T0, aromaHandler, threshold);
        touchAttachInterrupt(T3, audioHandler, threshold);
    }
    • Define handlers to trigger actions:

    Cpp


    void aromaHandler() {
        // Start or stop aroma diffuser
    }
    
    void audioHandler() {
        // Enable or switch audio modes
    }
  • Sensitivity Adjustment:
    • Adjust thresholds within code to ensure reliable touch detection according to your material choice.
Tips for Effective Design:
  • Material Selection: Use materials like glass or acrylic over the touch pads for aesthetic appeal while ensuring good capacitive sensitivity.
  • Feedback Mechanisms: Implement visual (like LEDs) or auditory feedback when buttons are pressed or touch sensors are activated.
  • Testing and Tuning: Experiment with debounce functions for buttons and sensitivity adjustments for touch to suit your design and materials.
This setup provides a responsive and aesthetically pleasing control method for your multifunction lamp. If you have any specific requirements or need further customization, feel free to ask!
1y
2


  • 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

Substantial Cyan T-800

Substantial Cyan T-800 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