The Original D-Bot includes something I quite like: an LED strip shining light onto the build surface. Since this sort of thing can be expanded into not only illumination but notification e.g. green for a completed print, red for a failed print, etc, I'm adding it to this build.
These LEDs are bright, and somewhat annoying. They need a diffuser, and I have some ninjaflex sitting around.
Does it work? Technically, yes. The space between the LED holes is a bit off, but not enough to matter over the entire length of an entire diffuser. These are the LEDs designed for this diffuser, and the OpenSCAD is below:
//The spacing var can be altered for different LED strips
spacing = 17;
difference(){
cube([136,10,3]);
translate([0,3,1.5])
cube([136,4,2.5]);
for(i = [-11.5: spacing: 170]){
translate([i,2,0.5])
cube([6,6,3]);
}
}
What does it look like when printed in Ninjaflex Semiflex Snow?
Witout
Wit
Slightly more even and glowey. These were affixed to the LED strip with 3M 468MP sheet adhesive, which should be more than strong enough to keep these things from falling down.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.