Search models, users, collections, and posts

ESP32-C6 Super Mini Case | USB-C | Options

Print Profile(2)

All
X1 Carbon
X1
A1
X1E
P1P
H2S
A1 mini
X2D
A2L
P1S
H2D Pro
H2D
P2S
H2C

ESP32-C6 Super Mini | 1.15 mm Board Thick
ESP32-C6 Super Mini | 1.15 mm Board Thick
Designer
1.6 h
2 plates
4.9(10)

ESP32-C6 Super Mini | 3-Wire-Hole | 1.15mm Board Thick
ESP32-C6 Super Mini | 3-Wire-Hole | 1.15mm Board Thick
Designer
1 h
2 plates
5.0(2)

Open in Bambu Studio
Boost
91
280
31
11
379
225
Released 

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

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! 🖨️

Join

Comment & Rating (31)

(0/1000)

License

If you want to use this model commercially, please join my membership.
Join Now
This user content is licensed under a Standard Digital File 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.