У нас вы можете посмотреть бесплатно DIY foliage/crystal light - with custom STL generator или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In recent AliExpress unbagging videos I occasionally featured random bits of fake foliage. Here's the project that uses them. It lets you create a custom sized housing to suit your application, and then populate it with your choice of random foliage or stems of crystals. The first version of this project was a simple cylinder shape, but the new version is more stylish and versatile. It was originally intended to be used in place of the usual globe on a mains powered LED bulb, but only after it has been hacked to reduce the power rating and keep the temperature at a sensible level. See my videos about doobying (Dubai-ing) suitable LED bulbs. (I can't foresee every variable, so you modify the bulbs at your own risk.) The use of a very common USB powered illuminated base is safer and gives you more options for choosing cold or warm white and even RGB with a remote control. There are no fixed rules for this project. You just make what you want. The end result is a totally custom feature light that nobody else will have in quite the same style. The foliage/crystal supports are intended to be a light friction fit to allow you to modify the light as desired. Here are some links to various items on AliExpress (not a sponsor). These are affiliate links, but that will not affect the price you pay. The conifer style foliage:- https://s.click.aliexpress.com/e/_c3s... The sprigs of acrylic beads:- https://s.click.aliexpress.com/e/_c4D... The USB powered illuminated wooden base:- https://s.click.aliexpress.com/e/_c45... All these items may appear as bundle deal options when you view them or add them to your cart. There are many options for fake foliage in places like Ali and eBay or in local shops. Here's the script to make your custom base. I used clear PLA to make mine. Copy the text below and paste it into openscad. https://openscad.org/ //LED foliage adapter //bigclivedotcom //Five user-adjustable variables rim=32; //LED rim/base diameter lip=5; //length of base lip cap=60; //largest cap diameter hole=4; //internal diameter of stem hole deep=20; //depth of stem hole //do not adjust stuff below here $fn=100; ring=(cap/2)-13; difference(){ union(){ difference(){ union(){ //Main body cylinder(h=15,d1=cap-10,d2=cap); translate([0,0,15]) cylinder(h=50,d1=cap,d2=rim); //lamp insert translate([0,0,64]) cylinder(h=lip+1,d=rim); } //rim base translate([0,0,1]) cylinder(h=14,d1=cap-12,d2=cap-2); translate([0,0,15]) cylinder(h=50,d1=cap-2,d2=rim-2); translate([0,0,64]) cylinder(h=lip+2,d=rim-2); } //Circle of foliage supports for (i=[0:60:330])rotate([0, 0, i]){ //Foliage insertion pillar translate([ring,0,0]) cylinder(h=deep,d=hole+2); //Pointed tip translate([ring,0,deep]) cylinder(h=hole+.5,d1=hole+2,d2=0); //Base flange translate([ring,0,0]) cylinder(h=hole,d1=hole+4,d2=hole+2); } } //Circle of foliage support recesses for (i=[0:60:330])rotate([0, 0, i]){ //tube core translate([ring,0,-1]) cylinder(h=deep+1,d=hole); //Pointed tip translate([ring,0,deep]) cylinder(h=hole-1,d1=hole,d2=0); //slight taper at tube entrance translate([ring,0,-.1]) cylinder(h=2,d1=hole+2,d2=hole); } //optional x-ray cube to look inside //translate([-50,-50,-1]) //cube([100,50,100]); }