• Models
  • Contests
  • Slicer
  • Login
  • Start Here
    thingiverse-iconprintables-iconcults3d-iconmakerworld-iconmyminifactory-icon

    3D GO

    3D ModelsContestsCollectionsSaved ModelsOn a mobile device?

3D GO

Privacy Policy
Custom Name 3D Printer File Image 1
Custom Name 3D Printer File Image 2
Custom Name 3D Printer File Thumbnail 1
Custom Name 3D Printer File Thumbnail 2

Custom Name

samu avatarsamu

January 20, 2026

printables-icon
DescriptionCommentsTags

Description

Complete technical description

This project is a modular kit to build your own name on a shared base using 3D-printable letters.
Users can print only the letters they need and insert them into the base. The letters are hollow, allowing installation of 5 mm LEDs of any color.

Key features

  • Modular base with space for wiring and round coin cell batteries up to 22 mm diameter

  • Optional LEDs; users can install any color

  • No fixed electronics housing: users can quickly cut or modify the base as needed

  • Clean, minimal design, ideal for desk or shelf decoration

  • Easy assembly, fully customizable

  • LED lighting works best with bright colors, single or RGB

additional code for ESP32 and Arduino

Operating instructions

  • One button → toggles the LED ON/OFF (es : 3 led)

  • Simple wiring between LED, resistor, and button

  • Button connected to digital pin with 10 kΩ pull-down resistor

int ledPin = 6;       // LED pin (arduino)
// int ledPin = 18;   // LED pin (ESP32)
int buttonPin = 2;    // Button pin (arduino)
// int buttonPin = 19; // Button pin (ESP32)

bool lightOn = false;
bool lastButtonState = LOW; // pull-down: not pressed = LOW

void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(buttonPin, INPUT); // external pull-down
}

void loop() {
  bool buttonState = digitalRead(buttonPin);

  if (lastButtonState == LOW && buttonState == HIGH) {
    lightOn = !lightOn;
    digitalWrite(ledPin, lightOn);
    delay(200); // simple debounce
  }

  lastButtonState = buttonState;
}

circuit connected to program
see the attached PDF

I remember the pulsed connection

+5V ----+
        |
        |   Button
        +---/ ---+
        |        |
        |        +-----> Arduino/ESP32 digital pin
        |
       10kΩ
        |
       GND

LED resistor table

Colore LED

Resistenza standard

Rosso

150 Ω

Verde

150 Ω

Giallo

150 Ω

Blu

90 Ω

Bianco

90 Ω

License:

Creative Commons — Attribution

Related Models

V29 preview image

V29

jzisa profile image

jzisa

81,507

Draw-A-Cat! Stencil for Feline Design preview image

Draw-A-Cat! Stencil for Feline Design

Studio Meshco profile image

Studio Meshco

108

Dual Text Illusion v2.0 preview image

Dual Text Illusion v2.0

neverland forge profile image

neverland forge

1,447

Cute Mini Octopus preview image

Cute Mini Octopus

McGybeer profile image

McGybeer

75,908

Palestinian Map In Geometric Pattern Design - 2 Parts preview image

Palestinian Map In Geometric Pattern Design - 2 Parts

PALIprints3D profile image

PALIprints3D

21

STAND QRCODE/NFC CARD GOOGLE REVIEWS EDITABLE preview image

STAND QRCODE/NFC CARD GOOGLE REVIEWS EDITABLE

ARTIGIANO PAZZO profile image

ARTIGIANO PAZZO

1,817

Modular Mounting System preview image

Modular Mounting System

HeyVye profile image

HeyVye

69,214

Design for a pipe in two pieces - UPDATED AGAIN preview image

Design for a pipe in two pieces - UPDATED AGAIN

Fergy7 profile image

Fergy7

1