Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
dTub
Скачать

Make custom LED neon shapes

Автор: bigclivedotcom

Загружено: 2022-04-22

Просмотров: 98125

Описание:

LED neon or LED flex is a very handy material for creating neon-like signage and effects.
As time goes on it's harder to find places that still make traditional glass neon. This is largely due to the advances made with LED technology providing a safe low voltage alternative for illumination of channel letters signs, and novel materials like this that emulate the traditional linear lines of neon.
Cost is a major factor too. While the LED neon flex won't last as long as a properly processed neon tube, it is easier to drive and much more tolerant of rough handling.

This project uses short pieces of LED neon flex to create very punchy looking geometric shapes. It's perfect for using up residual scraps from other projects.

To make a frame, copy and paste one of the scripts at the bottom of this description area into openscad, a free piece of open source software written by mathematical wizards. It allows you to describe 3D objects as text. That makes it very easy to adjust parameters to make custom STL files for using with your choice of slicer software (converts an STL file to a 3D printable form), and then print them with your 3D printer of choice.

Neon frame openscad scripts. Circle, triangle and square. Make sure you leave the "=" and ";" intact when adjusting variables - they are needed by the software:-

//LED neon circle frame
//Two main adjustable variables
thick=5; //thickness of LED neon
diam=121; //diameter of circular frame
//More specialist variables
wall=1.2; //wall thickness
height=6; //depth of groove
$fn=100; //circle segments
//Don't change variables below here
wl=wall*2;
thk=thick*2;
radius=diam/2;
difference(){
//main disk
cylinder(h=height+1, d=diam);
//central void
translate([0,0,-1])
cylinder(h=height+2, d=diam-thk-(wall*4));
//cable hole
translate([0,radius-wall-(thick/2),-1])
cylinder(h=height+2, d=thick-1);
difference(){
//channel groove outer dimension
translate([0,0,1])
cylinder(h=height+1, d=diam-wl);
//channel groove inner dimension
translate([0,0,-1])
cylinder(h=height+1, d=diam-wl-thk);
}
}


//LED neon triangle frame
//Adjust these main variables to suit
thick=5; //width of LED groove
width=150; //width of frame
//More specialist variables
height=6; //depth of LED groove
wall=1.2; //wall thickness
curve=20; //corner outer radius
$fn=100; //circle segments
//Don't change variables below here
wl=wall*2;
crv=curve*2;
thk=thick*2;
crz=(width/2)-curve;
tri=crz*1.732-crz; //peak of triangle
difference(){
//main disk
hull() {
translate([-crz,crz,0])
cylinder(h=height+1, d=crv);
translate([crz,crz,0])
cylinder(h=height+1, d=crv);
translate([0,-tri,0])
cylinder(h=height+1, d=crv);
}
//central void
hull() {
translate([-crz,crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
translate([crz,crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
translate([0,-tri,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
}
//cable hole
translate([0,(width/2)-wall-(thick/2),-1])
cylinder(h=height+2, d=thick-1);
difference(){
//channel groove outer dimension
hull() {
translate([-crz,crz,1])
cylinder(h=height+1, d=crv-wl);
translate([crz,crz,1])
cylinder(h=height+1, d=crv-wl);
translate([0,-tri,1])
cylinder(h=height+1, d=crv-wl);
}
//channel groove inner dimension
hull() {
translate([-crz,crz,1])
cylinder(h=height+1, d=crv-wl-thk);
translate([crz,crz,1])
cylinder(h=height+1, d=crv-wl-thk);
translate([0,-tri,1])
cylinder(h=height+1, d=crv-wl-thk);
}
}
}



//LED neon square frame
//Adjust these main variables to suit
thick=5; //thickness of LED neon strip
width=100; //width of frame
//More specialist variables
height=6; //depth of groove
wall=1.2; //wall thickness
curve=20; //corner outer radius
$fn=100; //circle segments
//Don't change variables below here
wl=wall*2;
crv=curve*2;
thk=thick*2;
crz=(width/2)-curve;
difference(){
//main frame
hull() {
translate([-crz,crz,0])
cylinder(h=height+1, d=crv);
translate([crz,crz,0])
cylinder(h=height+1, d=crv);
translate([-crz,-crz,0])
cylinder(h=height+1, d=crv);
translate([crz,-crz,0])
cylinder(h=height+1, d=crv);
}
//central void
hull() {
translate([-crz,crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
translate([crz,crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
translate([-crz,-crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
translate([crz,-crz,-1])
cylinder(h=height+3, d=crv-wl-wl-thk);
}
//cable hole
translate([0,(width/2)-wall-(thick/2),-1])
cylinder(h=height+2, d=thick-1);
difference(){
//channel groove outer
hull() {
translate([-crz,crz,1])
cylinder(h=height+1, d=crv-wl);
translate([crz,crz,1])
cylinder(h=height+1, d=crv-wl);
translate([-crz,-crz,1])
cylinder(h=height+1, d=crv-wl);
translate([crz,-crz,1])
cylinder(h=height+1, d=crv-wl);
}
//channel groove inner
hull() {
translate([-crz,crz,1])
cylinder(h=height+1, d=crv-wl-thk);
translate([crz,crz,1])
cylinder(h=height+1, d=crv-wl-thk);
translate([-crz,-crz,1])
cylinder(h=height+1, d=crv-wl-thk);
translate([crz,-crz,1])
cylinder(h=height+1, d=crv-wl-thk);
}
}
}

Make custom LED neon shapes

Поделиться в:

Доступные форматы для скачивания:

Скачать видео mp4

  • Информация по загрузке:

Скачать аудио mp3

Похожие видео

Процесс серийного производства светодиодной вывески с помощью высокопроизводительных 3D-принтеров.

Процесс серийного производства светодиодной вывески с помощью высокопроизводительных 3D-принтеров.

20 НОВЫХ ТОВАРОВ с Алиэкспресс 2026, Новые Вещи От Которых Точно ОФИГЕЕШЬ + КОНКУРС

20 НОВЫХ ТОВАРОВ с Алиэкспресс 2026, Новые Вещи От Которых Точно ОФИГЕЕШЬ + КОНКУРС

Testing a new 2-part style of LED

Testing a new 2-part style of LED "neon"

Inside a fake UVC toilet steriliser

Inside a fake UVC toilet steriliser

I made a multi-color “neon” sign using LED strips

I made a multi-color “neon” sign using LED strips

⚙️Мощная бормашинка из китайских запчастей

⚙️Мощная бормашинка из китайских запчастей

Смешайте ЛАК с КЛЕЕМ ПВА и откройте СЕКРЕТ, о котором мало кто знает! Удивительно!

Смешайте ЛАК с КЛЕЕМ ПВА и откройте СЕКРЕТ, о котором мало кто знает! Удивительно!

Как я делал бюджетный электроэрозионный станок

Как я делал бюджетный электроэрозионный станок

Какова длина светодиодных нитей?

Какова длина светодиодных нитей?

3 Mold-Making Hacks You Must Try! Budget-Friendly DIY

3 Mold-Making Hacks You Must Try! Budget-Friendly DIY

Преломление и «замедление» света | По мотивам лекции Ричарда Фейнмана

Преломление и «замедление» света | По мотивам лекции Ричарда Фейнмана

LED neon Sign with clear acrylic backer

LED neon Sign with clear acrylic backer

3D печать - не предел! Осваиваем литьё пластика для нового DIY проекта.

3D печать - не предел! Осваиваем литьё пластика для нового DIY проекта.

Тестирование КАРТОННОГО самолета для полета человека!

Тестирование КАРТОННОГО самолета для полета человека!

DIY 3D Printed RGB LED Alphabet Letters | Sign Board

DIY 3D Printed RGB LED Alphabet Letters | Sign Board

Intergalactic supercomputers for all (Not CGI)

Intergalactic supercomputers for all (Not CGI)

1982 ⚙️ VINTAGE Legendary VCR ✅ RESTORATION & Repair | Panasonic NV-333 📼 Made in Japan!

1982 ⚙️ VINTAGE Legendary VCR ✅ RESTORATION & Repair | Panasonic NV-333 📼 Made in Japan!

Результат попытки числового управления с шаговым двигателем...

Результат попытки числового управления с шаговым двигателем...

Solid State Volumetric Display

Solid State Volumetric Display

Я раскрыл самые известные фокусы в мире!

Я раскрыл самые известные фокусы в мире!

© 2025 dtub. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]