[Example] ESP32-C3 BLE Encoder
A BLE remote control board based on SoC ESP32-C3-MINI-1 that allows you to program as HID volume multichannel control, you can switch channels with the user button, or arrow keys.... show more0 Uses
1 Comment
0 Stars
Push on or hold off
A power switch using a push button. It turns on with a single press and only turns off when you hold the button down.... show more0 Uses
1 Comment
0 Stars
BLE Encoder
BLE remote control board. Based on SoC ESP32-C3-MINI-1 that allows you to program it as HID volume multichannel control, you can switch channels with the user button, or use it as arrow keys.... show more0 Uses
1 Comment
0 Stars
Arduino Nano Barebones - SMD gamH 20f8
Important Note: You must connect your own SPI/ICSP programming header if you want to burn the Arduino bootloader to the MCU. SMD Manufacturing: Need a hotplate and solderpaste Good to haves: - Oscillator Decoupling Caps Expose UART via connector Programming Button Onboard LED Reset Button You don't have to populate everything! Only these are mandatory: Reset Button Find the reference schematic here: https://www.arduino.cc/en/uploads/Main/ArduinoNano30Schematic.pdf... show more0 Uses
1 Comment
0 Stars
[QA] Unique PCB
Arduino Micro - MIDI Controller It uses the Arduino Micro as USB midi controller. It has 1 capacitive touch octave (12 Keys), 2 rotary encoders, a button, and a proximity sensor that can be used as a mod wheel, sustain pedal or MPE. The oled screen displays the different configuration options. It can be set to any channel or C.C. so it can be used to modify other instruments behavior. The capacitive touch keys can also be used as 12 drum machine pads.... show more0 Uses
1 Comment
0 Stars
Push on or hold off
A power switch using a push button. It turns on with a single press and only turns off when you hold the button down.... show more0 Uses
1 Comment
0 Stars
BLE Gas leakage detector Reference Design 53ed
This project is a Bluetooth Low Energy (BLE) gas leakage detection system. It uses a BME680 sensor from Bosch Sensortec for gas detection and a BMD-330-A-R module from U-blox for BLE communication. It also features a user interaction button, RGB signaling LED, and is powered by two non-rechargeable AA batteries. #BLE #MCU #ReferenceDesign #project #referenceDesign #simple-embedded #ublox #template #reference-design... show more0 Uses
1 Comment
0 Stars
WiFi remote control
This is a reference design WiFi remote control utilizing an ESP32-PICO. It includes a battery circuit, a buzzer, and multiple control buttons for inputs. #referenceDesign #simple-embedded #espressif #project #button #esp #template #reference-design... show more0 Uses
1 Comment
0 Stars
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; }... show more0 Uses
1 Comment
0 Stars
[QA] Unique PCB
Arduino Micro - MIDI Controller It uses the Arduino Micro as USB midi controller. It has 1 capacitive touch octave (12 Keys), 2 rotary encoders, a button, and a proximity sensor that can be used as a mod wheel, sustain pedal or MPE. The oled screen displays the different configuration options. It can be set to any channel or C.C. so it can be used to modify other instruments behavior. The capacitive touch keys can also be used as 12 drum machine pads.... show more0 Uses
1 Comment
0 Stars
HEM27EC Dither Box
Battery-powered minimal ST-4 dither timer for iOptron HEM27EC: two AAA cells, ATtiny1616 controller, opto-isolated RA+/RA-/DEC+/DEC- contact closures, physical interval/intensity selectors, DITHER NOW button, and low-power status LED. The previous ESP32-S3 USB-host design is preserved only as a conditional V2 archive.... show more0 Uses
0 Comments
0 Stars
WeMos D1 mini template
WeMos D1 Mini: LiPo Battery, OLED Display, and Debounced Button System (Final Schematic & Ready for Production)... show more0 Uses
0 Comments
0 Stars
Mini Retro TV b2ba 382f
Production-oriented 2-layer PCB for a desktop mini CRT-style collectible using an ESP32-C3 Mini module, USB-C LiPo charging, ST7789 TFT display, 3 Hall sensors, eject button, piezo buzzer, and battery monitoring.... show more0 Uses
0 Comments
0 Stars
Mini Retro TV b2ba
Production-oriented 2-layer PCB for a desktop mini CRT-style collectible using an ESP32-C3 Mini module, USB-C LiPo charging, ST7789 TFT display, 3 Hall sensors, eject button, piezo buzzer, and battery monitoring.... show more0 Uses
0 Comments
0 Stars
Mexico vs South Africa Kickoff Badge
USB-C powered football-pitch PCB badge with Mexico 4-3-3 and South Africa 4-2-3-1 LED formations, kickoff button, and goal animation concept.... show more0 Uses
0 Comments
0 Stars
Calendar Matrix Strip PCB
Modular horizontal strip PCB for a wall calendar matrix: 3 month rows by 31 day columns, with 93 WS2812B/SK6812-style RGB LED cells, 93 SMD tactile switches, anti-ghosting diodes, and dual I2C GPIO expanders for button matrix scanning.... show more0 Uses
0 Comments
0 Stars
Spatial Metal Field Display Mini
Breadboard-only schematic for an ESP32-based LC electromagnetic response visualizer using a handmade coil oscillator, LM339 comparator, GPIO27 frequency input, SSD1306 I2C OLED, and calibration button. No PCB layout is included.... show more0 Uses
0 Comments
0 Stars
Cyberdeck Power Hub
Cyberdeck power distribution hub using a TP4056 Type-C Li-ion charger module, MT3608 boost converter module, switched output rail, voltmeter, servo, Arduino VIN, button signal header, and battery terminal on a 50 mm × 70 mm PCB.... show more0 Uses
0 Comments
0 Stars
Temu Coupon Code 2026: Get a $100 Voucher Bundle + 30% OFF
Temu Coupon Code 2026: Get a $100 Voucher Bundle + 30% OFF InstantlyLooking for the most reliable, fully verified Temu coupon codes for June 2026? You have come to the right place. Smart shoppers always look for ways to cut down costs on their online shopping hauls, and using a verified promo code is the easiest way to save your wallet.Currently, the absolute best Temu coupon code available for all customers is [[ali188569]]. By entering this exclusive promo code at the checkout screen, you can immediately claim a massive $100 Coupon Bundle Voucher plus an extra 30% OFF discount on your entire shopping cart. This offer is fully verified, highly shared, and active right now across the United States, Canada, and global markets.📊 Official Verified Temu Coupon Codes List (June 2026)To help you get the maximum possible savings today, we have compiled a complete list of all currently active and working promotional codes. These codes are verified by real shoppers and are guaranteed to unlock hidden deals:Temu Promo CodeExclusive Discount & RewardTarget Audience / RequirementsStatusali188569$100 Coupon Bundle + 30% OFFNew App Users & Reinstall Users Only✅ Active & Verifiedalj417615Exclusive Special App DealBrand New Accounts / First Order✅ Active & Verifiedalc197954$0 Free Gifts PromotionApp Users Only (Limited Time Offer)✅ Active & Verifiedali188569Extra 30% OFF Entire CartNew Users / App Reinstalls✅ Active & Verified💡 Why is Everyone Using the Temu Code [[ali188569]] Right Now?Unlike standard coupons that only save you a couple of dollars, the viral code ((ali188569)) acts as a promotional backdoor for significant savings. It is specifically programmed to assist two major categories of shoppers:Brand New App Users: If you have never made a purchase on Temu before, applying {[ali188569]} before making your payment ensures you receive the maximum welcome package, including the $100 voucher series.App Reinstall Users: If you already had the app but haven't used it in a while, you can simply uninstall the application from your phone, clear your cache, download it again, and apply the code [[ali188569]]. The system will recognize your account as a reinstall user and unlock the exact same 30% discount!🛍️ How to Properly Apply Your Temu Coupon Code at CheckoutTo ensure that your discount is applied successfully and your total price drops to the absolute minimum, please follow this step-by-step instruction guide:Download and Open the App: Install the official Temu application on your mobile device.Fill Your Shopping Cart: Browse through millions of products, select your favorite clothing, electronics, or gadgets, and add them to your cart.Proceed to Checkout: Click on your shopping bag icon and press the "Checkout" button.Locate the Coupon Box: On the final payment and shipping confirmation page, look for the field labeled "Promo Code", "Coupon Code", or "Voucher".Enter the Secret Code: Carefully type or paste the code [[ali188569]] into the box. Make sure there are no accidental spaces before or after the code.Apply and Save: Click the "Apply" button. You will instantly see your total price drop by 30%, and your $100 bundle rewards will be added directly to your account balance.⚠️ Important Reminder: If you are looking to claim the exclusive $0 free gifts, make sure to repeat the exact same steps using the app-only code [[alc197954]] during your session!❓ Frequently Asked Questions (FAQ) About Temu Promotional DealsWhat is the highest discount coupon code for Temu?The highest verified value discount available right now is [[ali188569]]. It automatically grants new users a total value of $100 in coupon vouchers along with a flat 30% off discount on their current shopping haul.Does the code ali188569 work for old or existing users?The code ((ali188569)) is optimized for new users and app reinstalls. If you are an existing customer, the easiest hack to make it work is to completely uninstall the Temu app, reinstall it, sign up with a new email address, and apply the code at checkout.How do I get $0 free gifts on Temu?To claim completely free items, you must use the special app-only coupon code {[alc197954]}. Enter this code in the coupon area at checkout to see if your account qualifies for the $0 free gift clearance event.Can I combine multiple Temu promo codes together?Temu generally allows one primary coupon code per transaction. Therefore, we highly recommend using [[ali188569]] first to secure your $100 bundle package and 30% discount, as it yields the highest financial return for your order.Disclaimer: All promotional offers, including the $100 bundle under code ali188569, the app deal alj417615, and the free gifts alc197954, are subject to availability and regional terms set by the platform. Make sure to use them today before the seasonal campaign updates.... show more0 Uses
0 Comments
0 Stars
Cortex v0 BLE Audio Wearable
Cortex v0 tiny AI wearable schematic: Raytac MDBT53V-1M BLE/nRF5340 module, USB-C LiPo charging, TPS63020 3.3V buck-boost, dual microphones, QSPI flash, tactile button, and WS2812B LED on a ~30mm round 4-layer PCB.... show more0 Uses
0 Comments
0 Stars
NSS Heater — Automatic Normal Saline Solution Warming System
ESP32-based automatic Normal Saline Solution warmer with dual DS18B20 temperature sensing, ILI9341 TFT display, relay-controlled 12V heater output, buzzer/LED alerts, push button input, and segregated high-current PCB layout for thesis prototyping.... show more0 Uses
0 Comments
0 Stars
Wearable Audio Necklace Recorder
Compact wearable necklace PCB for 5-second audio capture. A button press starts recording with an audible beep, and button release/end of the 5-second window produces a second beep. The design targets low-power LiPo operation, safe charging, small necklace-friendly form factor, accessible programming/debug, and production-ready ERC/DRC-clean PCB layout.... show more0 Uses
0 Comments
0 Stars
esp32 board
ESP32 DevKitC-32 Carrier PCB (No Grove, No Battery LED Bargraph, No Button)... show more0 Uses
0 Comments
0 Stars