If you own a resin 3D printer, a UV curing box is essential for properly hardening your prints. Commercial curing stations cost Rs.3,000-8,000, but you can build a superior one using UV LED strips, a reflective chamber, and an Arduino timer for under Rs.1,500. This guide covers building a complete UV curing station with even exposure and auto-shutoff.
Why UV Curing for Resin Prints
Resin prints come out of the printer only partially cured. Post-curing with UV light:
- Hardens the resin fully, improving mechanical strength by 50-100%
- Reduces surface tackiness
- Improves dimensional stability and heat resistance
- Makes prints safer to handle (uncured resin is a skin irritant)
Understanding UV LED Wavelengths
Most 3D printing resins cure at 385-405nm (near-UV/violet):
- 405nm: The standard for most consumer resins. LED strips at this wavelength are affordable.
- 385nm: Cures faster but LEDs are more expensive
- 365nm: Too short for most resins, causes yellowing
Use 405nm UV LED strips — they match the wavelength of resin printer UV lasers.
Building the Curing Chamber
- Use a metal or plastic container (paint can, food container, or 3D printed box)
- Line the interior with aluminium foil (shiny side out) for maximum UV reflection
- Mount UV LED strips on all four walls and the lid
- Add a small turntable at the bottom for even exposure
- Mount Arduino and timer display on the outside
LED Array Design and Wiring
- Use 405nm UV LED strips (12V, typically 60 LEDs/m)
- Calculate total length: cover all four walls of the chamber
- Wire in parallel from a single 12V supply
- A 20x20x20 cm box needs about 2 metres of strip
- Power consumption: approximately 10-15W total
Arduino Timer with Auto-Shutoff
// UV curing timer with auto-shutoff
#define UV_PIN 3
#define BUZZER 8
unsigned long cureTime = 120000; // 2 minutes default
void startCure() {
digitalWrite(UV_PIN, HIGH);
unsigned long start = millis();
while (millis() - start < cureTime) {
// Display remaining time on LCD/OLED
displayTime(cureTime - (millis()-start));
}
digitalWrite(UV_PIN, LOW);
tone(BUZZER, 1000, 500); // Beep when done
}
Turntable for Even Curing
For uniform curing, add a slow-rotating turntable:
- Use a small 5V DC motor with a gear reduction (1-5 RPM)
- Mount a circular platform on the motor shaft
- The print rotates slowly, ensuring all surfaces receive equal UV exposure
- Alternative: a solar display turntable (available for Rs.100-200) works perfectly
Safety: UV Eye and Skin Protection
- UV radiation damages eyes: Never look directly at UV LEDs. Keep the lid closed during curing.
- Skin exposure: 405nm UV can cause skin irritation with prolonged exposure. Use the timer.
- Use UV-blocking materials: The container walls block stray UV light
- Ventilation: Some resins emit fumes when curing. Cure in a ventilated area.
Recommended LED Products
Frequently Asked Questions
How long should I cure resin prints?
Standard resins: 2-5 minutes. Tough/engineering resins: 5-10 minutes. Over-curing makes prints brittle.
Can I use regular LED strips instead of UV?
No. Regular visible-light LEDs do not emit the 405nm UV wavelength needed to polymerise resin. You specifically need UV LED strips.
Does UV curing work through the container?
No. UV light must directly hit the resin surface. That is why the LEDs must be inside the chamber.
Shop Display Modules at Zbotic.in
India’s trusted source for OLED, LCD, TFT, LED matrices, and more. Fast shipping across India.
Add comment