Ir para conteúdo
3DFinder
Entrar

Você está no 3DFinder

Buscamos em Thingiverse, MakerWorld e Printables ao mesmo tempo para te dar o melhor de cada uma.

Buscar mais como este
Modelo 3D Light Cube por Marcelo Chaves no Printables

Descrição

Print Settings

Printer:

Graber i3, Mini Kossel

Rafts:

No

Supports:

No

Resolution:

0.2mm

Infill:

15%~20% for lum1 and lum2 and 0% or 100% for lum3


Notes:

Hey guys! You will probably need to print the translucent part (lum3.stl) with 99.5% just to have enough space to fit in the up and bottom parts otherwise the parts will need some sanding job!

Update 2017-03-02: lum3\_v2.stl -> updated translucent piece with 0.15mm offset on both sides for a better fit.

Code used:

include

define PIN 3

const int tiltSensorPin = 2;

int seedR = 255, seedG = 242, seedB = 40, tiltSensorState = 1, originalTiltSensorState;

Adafruit_NeoPixel strip = Adafruit_NeoPixel(8, PIN, NEO_GRB + NEO_KHZ800);

void setup() {

pinMode(tiltSensorPin,INPUT);

strip.begin();

strip.show();

}

void loop() {

tiltSensorState = digitalRead(tiltSensorPin);

if(tiltSensorState != originalTiltSensorState) {

seedR = random(255);

seedG = random(255);

seedB = random(255);

originalTiltSensorState = tiltSensorState;

delay(500);

} else {

for(int i = 0; i < 8; i++) {

strip.setPixelColor(i, seedR, seedG, seedB);

}

}

strip.setBrightness(255);

strip.show();

}

Category: Decor

Printables

Light Cube

Publicado em 29 de abr de 2022

18
Curtidas
75
Downloads
Categoria Other House Equipment
Tags
thingiverse
Licença Creative Commons — Attribution — Share Alike
Arquivos (4)
lum2.stl 69.8 KB
lum3_v2.stl 76.3 KB
lum1.stl 72.7 KB
lum3.stl 79.8 KB
Ver no Printables (abre em nova aba)

Gostou deste modelo? Crie uma conta grátis para salvar seus favoritos e voltar a eles depois.

Criar conta