ESP32-C6 Super Mini Case | USB-C | Options
Print Profile(2)


Description
🔧 Features
- Snap-Fit
- Cable Hole - 4 mm or 3 Wire Hole (2.0 x 5.5 mm)
- Opener
- Wall Mount - Screw or Magnetic (8x2mm)
- Accessible Buttons
- Led Openings - Use PLA as a light emitter
- RGB Light Diffuser
- 7 Size Variants
- Support for board thickness 1.15mm or 1.65mm

Links
- Universal MCU Header Soldering Jig

- ESP32-C6 Super Mini board
Source Code
Accessing RGB Led via MicroPython and toggle the blue Led:
from machine import Pin
from neopixel import NeoPixel
import time
# RGB LED
np = NeoPixel(Pin(8), 1)
# Status-LED (Blue LED)
status = Pin(15, Pin.OUT)
statusValue = False
def set_color(r, g, b, brightness=1.0):
np[0] = (int(r * brightness), int(g * brightness), int(b * brightness))
np.write()
while True:
statusValue = not statusValue
status.value(statusValue)
set_color(255, 0, 0, 0.1) # rot, 10% Brightness
time.sleep(0.5)
set_color(0, 0, 255, 0.1) # blue, 10% Brightness
time.sleep(0.5)
set_color(0, 255, 0, 0.1) # green, 10% Brightness
time.sleep(0.5)
Like this design?
Consider buying me a coffee to support future projects: Buy me a coffee
Boost Me (for free)
🚀 Love this print? Smash that Boost button and help it reach more makers! Every boost = more awesome designs.
Membership
Keep the printer running — become a member! 🖨️
License
You shall not share, sub-license, sell, rent, host, transfer, or distribute in any way the digital or 3D printed versions of this object, nor any other derivative work of this object in its digital or physical format (including - but not limited to - remixes of this object, and hosting on other digital platforms). The objects may not be used without permission in any way whatsoever in which you charge money, or collect fees.






















Comment & Rating (31)