• Smart Button with E-Ink display mky7

    Smart Button with E-Ink display mky7

    This is a Smart Button project embedded with an E-Ink display. It uses an ESP32-PICO-KIT microcontroller and a Cherry MX mechanical switch for input detection. Upon the button press, various information is displayed on the E-Ink screen. #project #Template #projectTemplate

    robotinac

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Smart Button with E-Ink display

    Smart Button with E-Ink display

    This is a Smart Button project embedded with an E-Ink display. It uses an ESP32-PICO-KIT microcontroller and a Cherry MX mechanical switch for input detection. Upon the button press, various information is displayed on the E-Ink screen. #project #Template #projectTemplate

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Regulador de voltaje de 50 woZx

    Regulador de voltaje de 50 woZx

    This project is a WiFi Gesture Light Switch controlled by an ESP32 microcontroller. It leverages APDS-9960 and CH340C ICs for gesture recognition and USB communication respectively. Essential components include diodes for voltage protection, LEDs for status indication, and an AMS1117 voltage regulator to ensure a stable power supply. Connectors like USB Type-C are used for power and data transfers. #referenceDesign #project #ESP32 #ESP32WROOM #RF #WIFI #MCU #thermostat #referenceDesign #edge-computing #edgeComputing #espressif #template #reference-design

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Regulador de voltaje de 50 6czn

    Regulador de voltaje de 50 6czn

    This project is a WiFi Gesture Light Switch controlled by an ESP32 microcontroller. It leverages APDS-9960 and CH340C ICs for gesture recognition and USB communication respectively. Essential components include diodes for voltage protection, LEDs for status indication, and an AMS1117 voltage regulator to ensure a stable power supply. Connectors like USB Type-C are used for power and data transfers. #referenceDesign #project #ESP32 #ESP32WROOM #RF #WIFI #MCU #thermostat #referenceDesign #edge-computing #edgeComputing #espressif #template #reference-design

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Regulador de voltaje de 50 eVo1

    Regulador de voltaje de 50 eVo1

    This project is a WiFi Gesture Light Switch controlled by an ESP32 microcontroller. It leverages APDS-9960 and CH340C ICs for gesture recognition and USB communication respectively. Essential components include diodes for voltage protection, LEDs for status indication, and an AMS1117 voltage regulator to ensure a stable power supply. Connectors like USB Type-C are used for power and data transfers. #referenceDesign #project #ESP32 #ESP32WROOM #RF #WIFI #MCU #thermostat #referenceDesign #edge-computing #edgeComputing #espressif #template #reference-design

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Regulador de voltaje de 50 exG4

    Regulador de voltaje de 50 exG4

    This project is a WiFi Gesture Light Switch controlled by an ESP32 microcontroller. It leverages APDS-9960 and CH340C ICs for gesture recognition and USB communication respectively. Essential components include diodes for voltage protection, LEDs for status indication, and an AMS1117 voltage regulator to ensure a stable power supply. Connectors like USB Type-C are used for power and data transfers. #referenceDesign #project #ESP32 #ESP32WROOM #RF #WIFI #MCU #thermostat #referenceDesign #edge-computing #edgeComputing #espressif #template #reference-design

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • Smart Button with E-Ink display

    Smart Button with E-Ink display

    This is a Smart Button project embedded with an E-Ink display. It uses an ESP32-PICO-KIT microcontroller and a Cherry MX mechanical switch for input detection. Upon the button press, various information is displayed on the E-Ink screen. #project #Template #projectTemplate

    2 years ago

    0 Uses

    1 Comment

    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


  • WiFi RF-ID lock reference design g7u8

    WiFi RF-ID lock reference design g7u8

    This project is a WiFi RF-ID Lock, which uses a Espressif ESP-8684 microcontroller for WiFi connectivity and a Handson Technology RC522 for RF-ID functionality. It also includes an OLED display and user control via a switch. A step-up power converter ensures consistent 3.3V power. #WiFi #MCU #ReferenceDesign #project #ESP8684 #lock #OLED #referenceDesign #simple-embedded #espressif #template #reference-design

    2 years ago

    0 Uses

    1 Comment

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    2 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    2 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    3 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    3 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    3 days ago

    0 Uses

    0 Comments

    0 Stars


  • ESP32 28V Ethernet Controller

    ESP32 28V Ethernet Controller

    Clean-sheet 28 V industrial controller with ESP32-WROOM-32UE, RMII Ethernet, USB-UART programming, external switch interfaces, Tic 36v4 stepper control, protected I/O, and logic ride-through.

    3 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    5 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    6 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    9 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    10 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    11 days ago

    0 Uses

    0 Comments

    0 Stars


  • trialer

    trialer

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer, on/off switch, through-hole passives, and a PP3 battery holder.

    14 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer in astable mode, an on/off switch, and through-hole support components for approximately one blink per second.

    18 days ago

    0 Uses

    0 Comments

    0 Stars


  • 9V LED Blinker

    9V LED Blinker

    Hand-solderable 9V battery-powered red LED blinker using a 555 timer astable circuit, an on/off switch, and through-hole components.

    0 Uses

    0 Comments

    0 Stars


  • 9V 555 LED Blinker

    9V 555 LED Blinker

    Through-hole 9V battery-powered 555 timer circuit that blinks a red LED about once per second through an on/off switch.

    21 days ago

    0 Uses

    0 Comments

    0 Stars


Previous

Page 10 of 16

Next