• Car Pulse

    Car Pulse

    Welcome to your new project. Imagine what you can build here.

    camjacko

    +

    U
    U

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • Pulse Monitor Template 9zQs

    Pulse Monitor Template 9zQs

    Welcome to your new project. Imagine what you can build here.

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • 555 pulse

    555 pulse

    Welcome to your new project. Imagine what you can build here.

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • 555 Timer Astable

    555 Timer Astable

    The 555 timer IC is an integrated circuit used in a variety of timer, delay, pulse generation, and oscillator applications.

    5 years ago

    0 Uses

    17 Comments

    0 Stars


  • Terrible Gray T-800

    Terrible Gray T-800

    use code and design skemetics > #include <Stepper.h> #define STEPS_PER_REVOLUTION 200 // Steps per revolution of your stepper motor #define MICROSTEPS_PER_STEP 8 // Microsteps per step of the stepper driver (DMA860H supports up to 256 microsteps) #define STEPPER_PIN1 12 // Stepper motor driver pulse pin #define STEPPER_PIN2 13 // Stepper motor driver direction pin #define STATUS_BUTTON_PIN 2 // Pin connected to status button #define EMERGENCY_BUTTON_PIN 3 // Pin connected to emergency stop button #define HOME_BUTTON_PIN 4 // Pin connected to home button // Define states for button handling enum ButtonState { Idle, Pressed, Debouncing }; ButtonState statusButtonState = Idle; ButtonState emergencyButtonState = Idle; ButtonState homeButtonState = Idle; // Create a Stepper object with 200 steps per revolution and connect to appropriate pins Stepper stepper(STEPS_PER_REVOLUTION * MICROSTEPS_PER_STEP, STEPPER_PIN1, STEPPER_PIN2); void setup() { Serial.begin(9600); stepper.setSpeed(100); // Set the speed of the stepper motor (steps per second) // Initialize button pins pinMode(STATUS_BUTTON_PIN, INPUT_PULLUP); pinMode(EMERGENCY_BUTTON_PIN, INPUT_PULLUP); pinMode(HOME_BUTTON_PIN, INPUT_PULLUP); // Attach interrupts to buttons attachInterrupt(digitalPinToInterrupt(STATUS_BUTTON_PIN), statusButtonISR, FALLING); attachInterrupt(digitalPinToInterrupt(EMERGENCY_BUTTON_PIN), emergencyButtonISR, FALLING); attachInterrupt(digitalPinToInterrupt(HOME_BUTTON_PIN), homeButtonISR, FALLING); } void loop() { // Handle button states handleButtonState(statusButtonState, statusButtonPressed); handleButtonState(emergencyButtonState, emergencyButtonPressed); handleButtonState(homeButtonState, homeButtonPressed); // Your main code here } // ISR for status button void statusButtonISR() { statusButtonPressed = true; } // ISR for emergency stop button void emergencyButtonISR() { emergencyButtonPressed = true; } // ISR for home button void homeButtonISR() { homeButtonPressed = true; } // Function to handle button state transitions void handleButtonState(ButtonState &state, bool &pressed) { switch (state) { case Idle: if (pressed) { state = Debouncing; delay(50); // Debouncing delay } break; case Debouncing: if (!pressed) { state = Idle; } else { state = Pressed; } break; case Pressed: // Perform actions here when the button is pressed if (state == statusButtonState) { Serial.println("Status button pressed."); // Perform status-related actions here } else if (state == emergencyButtonState) { Serial.println("Emergency stop button pressed."); // Perform emergency stop actions here } else if (state == homeButtonState) { Serial.println("Home button pressed."); // Perform homing actions here } state = Idle; break; } pressed = false; }

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • 4S1P Battery Power Board

    4S1P Battery Power Board

    4S1P Li-ion/LiPo battery interface board with XT60 high-current output, JST-XH 5-pin balance connector, exposed weld/contact pads, and 4 oz 2-layer high-current copper pours for 60 A nominal / 100 A pulse operation.

    a month ago

    0 Uses

    0 Comments

    0 Stars


  • SLOT PCB

    SLOT PCB

    Slot-machine telemetry board with 5V or 12V input, removable ESP32 module interface, Ethernet connectivity, and isolated money pulse inputs.

    +

    U

    3 months ago

    0 Uses

    0 Comments

    0 Stars


  • ESP32 Golf Ball Dispenser Interface

    ESP32 Golf Ball Dispenser Interface

    Reusable ESP32-WROOM golf ball dispenser interface board with protected 12V to 24V input power, one conditioned coin pulse input, SPDT relay dry-contact output, open-collector output, Bluetooth pulse generation, screw-terminal field wiring, and optional UART programming access.

    4 months ago

    0 Uses

    0 Comments

    0 Stars


  • Semantic Cyan Hoverboard

    Semantic Cyan Hoverboard

    9V NE555 Latching Trigger to 40 ms Active-Low CD4066B Control Pulse

    +

    U

    5 months ago

    0 Uses

    0 Comments

    0 Stars


  • Artificial Olive Interocitor

    Artificial Olive Interocitor

    Rechargeable Non-Lethal Bee Venom Stimulator with TP4056 Charging, MT3608 Boost to 9–12 V, NE556 Dual-Timer Pulse Control, and NPN Output Drivers on Single-Layer Through-Hole PCB #LiIon #USBCharge #Boost #NE556 #NPNDrivers #ThroughHolePCB

    6 months ago

    0 Uses

    0 Comments

    0 Stars


  • Wearable biosensor MAX30102 Template

    Wearable biosensor MAX30102 Template

    This is a MAX30102 based integrated pulse oximetry and heart-rate monitor biosensor module #wearable #pulse #heartRate #oximeter #MAX30102 #referenceDesign

    10 months ago

    0 Uses

    0 Comments

    0 Stars


  • Secret Crimson Hoverboard

    Secret Crimson Hoverboard

    Circuit Overview The circuit you're describing is a digital counter that uses an LDR (Light-Dependent Resistor) and a transistor to detect wheel rotations. The counter's output is then displayed on a seven-segment LED display. Here's a breakdown of the components and their roles: 1. Wheel Rotation Detection (LDR and Transistor) * LDR: The LDR acts as a sensor to detect changes in light intensity. You can mount it on the wheel' or near it, with a reflective or non-reflective surface attached to the wheel. As the wheel rotates, the LDR will be exposed to alternating light and dark conditions, causing its resistance to change. * Transistor: The transistor (e.g., a 2N2222 NPN BJT) is used as a switch or amplifier. The changing resistance of the LDR is used to control the base current of the transistor. When the LDR's resistance drops (more light), the transistor turns on, and when the resistance increases (less light), the transistor turns off. This converts the analog change in light into a digital ON/OFF signal (a pulse). 2. Counter (7490) * 7490 IC: This is a decade counter, meaning it can count from 0 to 9. The output of the transistor (the pulses) is fed into the clock input of the 7490. Each pulse represents one rotation of the wheel, and the 7490 increments its count accordingly. The 7490 has four outputs (Q0, Q1, Q2, Q3) that represent the BCD (Binary-Coded Decimal) equivalent of the count. 3. BCD to Seven-Segment Decoder (7446) * 7446 IC: The 7446 is a BCD-to-seven-segment decoder/driver. Its job is to take the 4-bit BCD output from the 7490 and convert it into a signal that can drive a seven-segment LED display. It has seven outputs (a, b, c, d, e, f, g), each corresponding to a segment of the LED display. 4. Seven-Segment LED Display * Seven-Segment Display: This display is used to show the count. The 7446's outputs are connected to the corresponding segments of the display. 5. Power Supply and Other Components * Power Supply: A regulated DC power supply (e.g., 5V) is needed to power all the ICs and components. * Resistors: Resistors are used for current limiting (e.g., for the LDR and the LED display) and biasing the transistor. * Capacitors: A capacitor might be used for debouncing the signal from the transistor to prevent multiple counts for a single rotation. Conceptual Connections Here is a step-by-step breakdown of how the components would be connected: * LDR and Transistor: * The LDR and a current-limiting resistor are connected in series across the power supply. * The junction between the LDR and the resistor is connected to the base of the NPN transistor. * The emitter of the transistor is connected to ground. * The collector of the transistor, with a pull-up resistor, becomes the output for the pulse signal. * Transistor to 7490: * The output from the transistor's collector is connected to the clock input of the 7490 IC. * The 7490's reset pins (MR and MS) should be connected to ground for normal counting operation. * 7490 to 7446: * The BCD outputs of the 7490 (Q0, Q1, Q2, Q3) are connected to the BCD inputs of the 7446 (A, B, C, D). * 7446 to Seven-Segment Display: * The outputs of the 7446 (a, b, c, d, e, f, g) are connected to the corresponding segments of the seven-segment display. * Crucially, you need to use current-limiting resistors (e.g., 330Ω) in series with each segment to protect the LEDs from high current. * The common terminal of the seven-segment display is connected to the power supply (for a common anode display) or ground (for a common cathode display). This setup creates a chain reaction: wheel rotation changes light, which changes LDR resistance, which turns the transistor on/off, generating a pulse. This pulse increments the 7490, and the 7490's output is decoded by the 7446, which then displays the count on the seven-segment LED.

    a year ago

    0 Uses

    0 Comments

    0 Stars


  • Wearable MAX30102 based oximeter

    Wearable MAX30102 based oximeter

    This is a MAX30102 based integrated pulse oximetry and heart-rate monitor biosensor module #wearable #pulse #heartRate #oximeter #MAX30102 #referenceDesign

    a year ago

    0 Uses

    0 Comments

    0 Stars


  • Wearable biosensor MAX30102 Template

    Wearable biosensor MAX30102 Template

    This is a MAX30102 based integrated pulse oximetry and heart-rate monitor biosensor module #wearable #pulse #heartRate #oximeter #MAX30102 #referenceDesign

    a year ago

    0 Uses

    0 Comments

    0 Stars


  • 555 Timer Astable

    555 Timer Astable

    The 555 timer IC is an integrated circuit used in a variety of timer, delay, pulse generation, and oscillator applications.

    a year ago

    0 Uses

    0 Comments

    0 Stars


  • Wearable biosensor MAX30102 Template

    Wearable biosensor MAX30102 Template

    This is a MAX30102 based integrated pulse oximetry and heart-rate monitor biosensor module #wearable #pulse #heartRate #oximeter #MAX30102 #referenceDesign

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • Pulse_Width_Modulation__ControllerPulse_Width_Modulation__ControllerPulse_Width_Modulation__Controller

    Pulse_Width_Modulation__ControllerPulse_Width_Modulation__ControllerPulse_Width_Modulation__Controller

    This project is a Pulse Width Modulation (PWM) Controller, built around an LM555 timer IC. It controls a load connected to a MOSFET, with adjustments via a potentiometer, and uses capacitors, resistors and diodes for various functions. #PWM #controller #project #Template #projectTemplate

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • 2N7002DW-3T6R 71da

    2N7002DW-3T6R 71da

    The 2N7002DW, manufactured by iSion, is an N-channel enhancement mode field-effect transistor (FET) designed for high-speed pulse amplifier and drive applications. It is fabricated using the N-channel DMOS process and comes in a compact SOT-363 package. The component offers robust ESD protection compliant with MIL-STD 833, +2.5KV contact discharge. Key features include a drain-source voltage (VDSS) of 60V, a gate-source voltage (VGSS) of +20V, and a continuous drain current (ID) of 300mA, with a pulsed drain current (IDM) of 800mA. The device has a maximum power dissipation (PD) of 350mW and operates within a junction temperature range of -55°C to +150°C. Additionally, it exhibits a low static drain-source on-resistance (RDS(ON)) of 2.0Ω at VGS = 10V and ID = 300mA, making it suitable for efficient switching applications. The thermal resistance from junction to ambient (RθJA) is rated at 500°C/W, ensuring reliable performance in various thermal conditions.

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • 2N7002HD-T3R

    2N7002HD-T3R

    The 2N7002H, manufactured by iSion, is an N-channel enhancement mode field-effect transistor (FET) designed for high-speed pulse amplifier and drive applications. Utilizing the N-Channel DMOS process, this component features robust ESD protection compliant with MIL-STD 833, +2.5KV contact discharge. The 2N7002H is available in a SOT-23 package, ensuring full RoHS compliance and superior solderability as per MIL-STD-202, Method 208. Key specifications include a drain-source voltage (VDSS) of 60V, a gate-source voltage (VGSS) of +20V, and a maximum continuous drain current (ID) of 300mA. The device boasts a low static drain-source on resistance (RDS(ON)) of 2.0Ω at VGS of 10V and ID of 300mA, and dynamic characteristics such as a turn-on delay time (td(on)) of 6ns and a turn-off delay time (td(off)) of 25ns. The component operates within a junction temperature range of -55°C to +150°C and offers thermal resistances of 357°C/W junction-to-ambient and 90°C/W junction-to-case.

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • Pulser

    Pulser

    Welcome to your new project. Imagine what you can build here.

    2 years ago

    0 Uses

    10 Comments

    0 Stars


  • pulsera

    pulsera

    Welcome to your new project. Imagine what you can build here.

    2 years ago

    0 Uses

    0 Comments

    0 Stars


  • Comprehensive Brown Esper Photo Analyser

    Comprehensive Brown Esper Photo Analyser

    Programmable CDI Controller (STM32F103, isolated pulser, SCR trigger, 4-layer automotive PCB)

    5 months ago

    0 Uses

    0 Comments

    0 Stars


  • Brainstorm a new project with AI [Example]

    Brainstorm a new project with AI [Example]

    HI, CAN YOU HELP ME WITH A CIRCUIT, FOR TWO PULSER I CAN CHANGE THE VOLTAGE FOR AN MOTOR OF 9V

    a year ago

    0 Uses

    0 Comments

    0 Stars


Previous

Page 5 of 5