• RT6150B-33-Reference-Design

    RT6150B-33-Reference-Design

    Typical Application Circuit for RT6150B-33GQW, 1 Positive Fixed Output 3.3V 800mA. Input voltage 6V max. With JST connectors(Vin and +3V3) and with block terminal connectors(Vin and +3V3) #project-template #voltageregulator #switchingregulator #BuckBoost #project

    vasy_skral

    +

    U

    3 years ago

    0 Uses

    1 Comment

    1 Star


  • Qwiic PC Fan Controller

    Qwiic PC Fan Controller

    The Qwiic PC Fan Controller allows you easily control almost any PC fan over the Qwiic bus using the on board ATtiny microcontroller and control firmware. The control firmware monitors the tachometer output of the fan in order to implement PI Control over the fan speed, allowing you to set your desired speed in real units.

    +

    U

    2 years ago

    0 Uses

    1 Comment

    1 Star


  • PROX USB HID Interface

    PROX USB HID Interface

    Four-port USB-C HID translation/accessibility prototype with controller host input, console-facing HID device output, PC configuration/debug, and dedicated USB-C power input.

    10 days ago

    0 Uses

    0 Comments

    1 Star


  • Dental Vacuum Pump Controller

    Dental Vacuum Pump Controller

    Controller board for a dental suction vacuum pump system using a 24 V low-voltage control board, VFD motor drive interface, 4–20 mA vacuum sensing, float/temperature safety inputs, solenoid flush output, alarm output, and local display.

    a month ago

    0 Uses

    0 Comments

    1 Star


  • ArcBridge

    ArcBridge

    ArcBridge by Bridgeway Audio — a Raspberry Pi Pico 2 based HDMI audio embedder/DDC with TOSLINK and coax S/PDIF inputs, HDMI TMDS output with dummy video, ARC return audio, and CEC participation, powered from the Pico USB-C port.

    2 months ago

    0 Uses

    0 Comments

    1 Star


  • ESP32-S3 Handheld Controller

    ESP32-S3 Handheld Controller

    Production-intent ESP32-S3 handheld controller with USB-C sink power, ST7789 SPI TFT, 5-way controls, class-D speaker output, and factory test pads on a 4-layer PCB.

    3 months ago

    0 Uses

    0 Comments

    1 Star


  • Mini UPS 42V to 12V

    Mini UPS 42V to 12V

    Mini UPS PCB for a 42 V external adapter and external 10S lithium battery pack. Includes adapter-priority source selection with automatic switchover, input protection, ideal-diode OR-ing, a 30 V to 42 V HV bus, and a regulated 12 V output stage. Includes status LEDs and battery monitor pads. Excludes onboard charger circuitry and excludes adapter or battery source design.

    +

    U
    U

    3 months ago

    0 Uses

    0 Comments

    1 Star


  • 110 VAC PDLC Controller

    110 VAC PDLC Controller

    110 VAC mains-input PDLC controller redesign for 25 W+ load with protected front end, rectified HV bus, auxiliary control supply, and preserved downstream square-wave output control.

    +

    U

    3 months ago

    0 Uses

    0 Comments

    1 Star


  • MC33063A Step-Up Converter

    MC33063A Step-Up Converter

    High-level step-up converter project that uses the MC34063A family to boost an input supply to a regulated output voltage for general DC power conversion and evaluation.

    4 months ago

    0 Uses

    0 Comments

    1 Star


  • Light Pink Flux Capacitor

    Light Pink Flux Capacitor

    Industrial ESP32-S3 MicroPython Controller with USB Hub, HDMI Output, Isolated Relay, and Buzzer Driver

    6 months ago

    0 Uses

    0 Comments

    1 Star


  • Realistic Brown Battle Mech

    Realistic Brown Battle Mech

    Nice — you can do a clean pulse + latch using a single quad Schmitt-NAND chip: 74HC132 (or 74LVC132 for 3.3 V systems). The HC132 contains four 2-input NAND gates with Schmitt inputs so you can both clean a noisy SYN480R DATA line and build an SR latch (NAND SR is active-LOW) inside one package. Only a few passives and a driver transistor are needed. Below is a ready-to-build recipe (parts, wiring, explanation, tuning tips, and an ASCII schematic) — no extra logic ICs required. Parts (per latch) 1 × 74HC132 (quad 2-input NAND with Schmitt inputs). If your system is 3.3 V use 74LVC132 / 74HC132 rated for 3.3 V. Rin = 47 kΩ (input series) Cfilter = 10 nF (input RC to ground) — tweak for debounce/clean time Rpulldown = 100 kΩ (pull-down at input node, optional) Rpullup = 100 kΩ (pull-up for active-LOW R input so reset is idle HIGH) Rbase = 10 kΩ, Q = 2N2222 (NPN) or small N-MOSFET (2N7002) to drive your load Diode for relay flyback (1N4001) if you drive a coil Optional small cap 0.1 µF decoupling at VCC of IC Concept / how it works (short) Use Gate1 (G1) of 74HC132 as a Schmitt inverter by tying its two inputs together and feeding a small RC filter from SYN480R.DATA. This removes HF noise and provides a clean logic transition. Because it's a NAND with tied inputs its function becomes an inverter with Schmitt behavior. Use G2 & G3 as the cross-coupled NAND pair forming an SR latch (active-LOW inputs S̄ and R̄). A low on S̄ sets Q = HIGH. A low on R̄ resets Q = LOW. Wire the cleaned/inverted output of G1 to S̄. A valid received pulse (DATA high) produces a clean LOW on S̄ (because G1 inverts), setting the latch reliably even if the pulse is brief. R̄ is your reset input (pushbutton, HT12D VT, MCU line, etc.) — idle pulled HIGH. Q drives an NPN/MOSFET to switch your load (relay, LED, etc.). Recommended wiring (pin mapping, assume one chip; use datasheet pin numbers) I’ll refer to the 4 gates as G1, G2, G3, G4. Use G4 optionally for additional conditioning or to build a toggler later. SYN480R.DATA --- Rin (47k) ---+--- Node A ---||--- Cfilter (10nF) --- GND | Rpulldown (100k) --- GND (optional, keeps node low) Node A -> both inputs of G1 (tie inputs A and B of Gate1 together) G1 output -> S̄ (S_bar) (input1 of Gate2) Gate2 (G2): inputs = S̄ and Q̄ -> output = Q Gate3 (G3): inputs = R̄ and Q -> output = Q̄ R̄ --- Rpullup (100k) --- VCC (reset is idle HIGH; pull low to reset) (optional) R̄ can be wired to a reset pushbutton to GND or to an MCU pin Q -> Rbase (10k) -> base of 2N2222 (emitter GND; collector to one side of relay coil) Other side of relay coil -> +V (appropriate coil voltage) Diode across coil If you prefer MOSFET low side switching: Q -> gate resistor 100Ω -> gate of 2N7002 2N7002 source -> GND ; drain -> relay coil low side

    10 months ago

    0 Uses

    0 Comments

    1 Star


  • Fast Silver Flubber

    Fast Silver Flubber

    Create a schematic diagram of an electric fence controller using the NE556 dual timer IC. The circuit must include all components with clear electronic symbols (resistors, capacitors, transistors, diode, relay) connected by lines as in a real circuit diagram. Specifications: 1. Power supply: - Vcc = +12V connected to pin 14 of the NE556. - Pin 1 of the NE556 to ground. 2. Timer A (active 10 seconds): - Pin 2 (Trigger A) receives a pulse from transistor Q2 (contact detector). - Pin 6 (Threshold A) connected to Pin 7 (Discharge A). - R1 = 1 MΩ between Pin 7 and +12V. - C1 = 10 µF between Pin 6 and ground. - Pin 3 (Out A) goes through a 4.7 kΩ resistor to the base of Q1 (BC547 NPN transistor). - Pin 3 also connected via a 100 nF capacitor to Pin 13 (Trigger B of Timer B). 3. Timer B (rest 10 seconds): - Pin 9 (Discharge B) and Pin 8 (Threshold B) connected together. - R2 = 1 MΩ between Pin 9 and +12V. - C2 = 10 µF between Pin 8 and ground. - Pin 12 (Out B) can be optionally used to block retrigger of Timer A. 4. Relay driver stage: - Q1 = BC547 NPN transistor. - Base connected through 4.7 kΩ resistor to Pin 3 (Out A). - Emitter to ground. - Collector connected to one side of the relay coil. - Other side of relay coil connected to +12V. - A diode 1N4007 placed in parallel with the relay coil (cathode to +12V, anode to collector of Q1). - Relay contacts switch the +12V supply to the electric fence energizer. 5. Contact detector: - Shunt resistor ≈0.1 Ω placed in series with the fence output. - Q2 = BC547 NPN transistor, base connected to the shunt, emitter to ground, collector to Pin 2 (Trigger A). - When current flows through the shunt, Q2 provides a trigger pulse to Timer A. Please draw the schematic in a standard style with components connected by straight lines, not in block diagrams. Show clear pin numbers of the NE556 and all external components.

    a year ago

    0 Uses

    0 Comments

    1 Star


  • Adorable Blue Tractor Beam

    Adorable Blue Tractor Beam

    se solicita que diseñe el circuito para una máquina expendedora, como medio de ingreso, la máquina expendedora tendrá un colector de monedas de ocho posiciones, el cual puede recibir desde una moneda hasta ocho monedas simultaneas. Se adjuntan imágenes con fines ilustrativos Identificar cuántas monedas se reciben poder para otorgar el producto necesario, tener un contador por cada una de las bebidas y errores que se presenten con valores 00 – 99, una identificación visual del evento que sucede, de ser necesario debe ser posible la vuelta a cero de todos los contadores. Los valores a tener en cuenta son:  0 monedas Nada  2 monedas Agua  3 monedas Jugo  5 monedas Gaseosa  Otra cantidad de monedas Error Equipo a utilizar  Para diagrama y prueba del circuito https://circuitverse.org/simulator o Compuerta AND o Compuerta OR o Compuerta NOT o SPLITTER o INPUT o OUTPUT o MULTIPLEXER o FLIP FLOP o BUTTON o LED o DISPLAY 7 SEGMENT o SUBCIRCUIT o No está permitido utilizar integrados, si son necesarios se crearán con compuertas AND, OR Y NOT

    a year ago

    0 Uses

    0 Comments

    1 Star


  • Boost converter for 3.3 volt

    Boost converter for 3.3 volt

    A Buck converter that can be power by Li-ion Battery and output 3.3 volt and 500mA Power by the TPS63051YFFR and the same package as a In the same as a Package as a standard dafruit buck converter. input Voltage Range : 3.3 v to 5.5 v

    10 months ago

    0 Uses

    0 Comments

    1 Star


  • test part template

    test part template

    A simple voltage divider to showcase how to make parts. A voltage divider is a simple circuit which turns a large voltage into a smaller one. Using just two series resistors and an input voltage, we can create an output voltage that is a fraction of the input. Voltage dividers are one of the most fundamental circuits in electronics.

    +

    U

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • LW18-S

    LW18-S

    I2C to dual PWM controller. The LED-Warrior18, manufactured by Code Mercenaries, is an I2C to dual channel PWM LED driver specifically designed to provide seamless brightness control for LED applications. This component, available in SOIC8 package (LW18-S) and as a ready-to-use module (LW18-01MOD), offers dual 16-bit PWM outputs with a dimming range from 0.001% to 100% and operates at a PWM frequency of 730 Hz. It supports programmable period lengths for higher-frequency or lower-resolution operation and includes an 8-bit data to logarithmic mapping feature for smoother dimming operations with just 256 steps. The LED-Warrior18 is engineered for minimal external circuitry with a 5V power supply requirement, offering ease of use in various lighting applications. It also features a sync mode for synchronized control of multiple units and customizable power-on status settings, making it highly versatile for standalone operations or integrated systems. Additionally, custom variants of both the chip and module are available, catering to specific application needs. The module version, LW18-01MOD, simplifies integration by including terminal blocks and supporting up to 4A load sink current for each output. The LED-Warrior18 stands out for its straightforward interface and operational flexibility, providing a comprehensive solution for advanced LED dimming and control projects.

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • LM248D

    LM248D

    The LM248 and LM348 quad operational amplifiers, manufactured by STMicroelectronics, incorporate four independent, high-gain internally-compensated, low-power operational amplifiers designed to provide identical functional characteristics to those of the renowned UA741 operational amplifier. These components stand out for their low supply current of 0.53 mA per amplifier and class AB output stage, ensuring no crossover distortion, which makes them highly suitable for applications demanding multiple UA741 type amplifiers and where amplifier matching or high packaging density is required. Furthermore, the LM248 and LM348 offer superior features such as low input offset voltage (1 mV), low input bias current (30 nA), and a gain bandwidth product of 1.3 MHz. They also boast excellent isolation between amplifiers (120 dB) and overload protection for inputs and outputs, enhancing their reliability and performance in various operational environments. The operational temperature ranges are from -40 °C to 105 °C for the LM248 and 0 °C to 70 °C for the LM348, catering to a broad spectrum of industrial applications. Additionally, these components are pin-compatible with LM124, LM224, LM324, further extending their applicability in electronic circuit designs.

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • Guitar Pedal Template

    Guitar Pedal Template

    Guitar pedal starter template based on project by Mark Wu. Includes schematic and PCB layout for basic DIY pedal hardware. This includes two 1/4" jacks (one for input and one for output), a 9V power supply (including LED), a 3PDT true bypass wiring setup, and an example potentiometer that can be copy/pasted throughout the circuit. The headers are meant to be unpopulated so that wires can be soldered to the pads. PCB design rules imported from the JLCPCB 2-layer stackup template. #template

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • OPA2863RUNR

    OPA2863RUNR

    The OPAx863 series from Texas Instruments includes the OPA863, OPA2863, and OPA4863, which are low-power, rail-to-rail input/output, voltage-feedback operational amplifiers designed for high-performance applications. These amplifiers feature a unity-gain bandwidth of 110 MHz, a gain-bandwidth product of 50 MHz, and a low quiescent current of 700 µA per channel. The devices operate across a wide supply voltage range of 2.7 V to 12.6 V, making them suitable for both portable and battery-powered systems. With a slew rate of 105 V/µs, 5.9 nV/√Hz input voltage noise, and exceptional harmonic distortion performance (-129 dBc HD2, -138 dBc HD3 at 20 kHz for 2 Vpp output), the OPAx863 is adept for driving SAR and ΔΣ ADCs, acting as ADC reference buffers, low-side current sensing, photodiode TIA interfaces, and other high-precision tasks. Additional features include overload power limiting, output short-circuit protection, and a power-down mode with minimal quiescent current, making the OPAx863 series a versatile and robust choice for applications requiring low power and high-precision analog performance. The series includes single, dual, and quad-channel configurations available in various surface-mount packages to fit different design requirements.

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • NES UNI TAP 2P

    NES UNI TAP 2P

    NES Uni-Tap 2-player controller adapter. Combines two original Nintendo controller inputs into one single output for accessibility/copilot style gameplay.

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • Buck Boost Converter 3.3V 500mA

    Buck Boost Converter 3.3V 500mA

    A buck boost converter that can be powered from a Li-Ion battery and output 3.3V @ 500mA. Powered by the TPS63051YFFR and in the same package as a standard adafruit buck converter . Input Voltage range : 2.5V to 5.5V

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • High Voltage AC Rectifier

    High Voltage AC Rectifier

    Multiple High Voltage Sources from Single Class D Amplifier Input Input: 48V 2.5kW Output: 5kV 2kW

    3 years ago

    0 Uses

    0 Comments

    1 Star


  • PCB Layer View Controller with 2 layer board sdqm

    PCB Layer View Controller with 2 layer board sdqm

    A simple fixed linear voltage regulator board that can provide 3.3V up to 1A output and could operate down to 1V input-to-output differential. #firstpcbFlux

    0 Uses

    0 Comments

    1 Star


  • Guitar Pedal Template eu95

    Guitar Pedal Template eu95

    Guitar pedal starter template based on project by Mark Wu. Includes schematic and PCB layout for basic DIY pedal hardware. This includes two 1/4" jacks (one for input and one for output), a 9V power supply, a 3PDT true bypass wiring setup, and an example potentiometer that can be copy/pasted throughout the circuit. size is a good default size for a 125B enclosure. The headers are meant to be unpopulated so that wires can be soldered to the pads. PCB design rules imported from the JLCPCB 2-layer stackup template. Meant to be used with the 3PDT Breakout Board on my profile. #template

    2 years ago

    0 Uses

    0 Comments

    1 Star


  • LTC3406 Reference Design

    LTC3406 Reference Design

    This is a reference design of a buck converter based on LTC3406 with 1.2V 0.6A output #referenceDesign #powermanagement #analogdevices #template #reference-design #polygon

    a year ago

    0 Uses

    0 Comments

    1 Star


Previous

Page 3 of 126

Next