PoliceBox / Tardis With Light 3D Printer Model

Author: @
License: CC BY-NC
File formats: ino,stl
Download type: zip
Size:665.6KB

The file 'PoliceBox / Tardis With Light 3D Printer Model' is (ino,stl) file type, size is 665.6KB.

Summary

Easy project, hardest part is to get everything tidily inside.

Doesn't show clearly in the video, but the breathing is very linear and it glows nicely out of the windows too.
https://www.youtube.com/watch?v=DMVMIuP2tLc

You can mostly customize everything, because in example it's not necessary to have such a huge battery pack. But atleast it can last a month with two AAs :D

Things you need:

You can easily fit arduino nano in the police box, but I decided to use 8pin ATtiny45 because it can operate with just voltage of 1.8V. You still cannot use rechargeable cells or the led will be too dim :/

I firstly followed an out dated tutorial for programming the ATtiny so BE CAREFUL you might be wasting your time. None the less this is the tutorial that worked like a charm: http://highlowtech.org/?p=1695
If you cannot get it to work, explain your problem in the comments :)

After i got the test code working i took the example fade sketch and changed the settings until I was satisfied and uploaded it. Then wired it more permanently and I also added an extra button to bypass the chip so the tardis could be used as a static night light also.
It took like an hour to get everything inside the tardis, but hot glue makes everything perfect.

Ps. Here's the code if you're lazy:

int led = 0;
int brightness = 0;
int fadeAmount = 2;
void loop () {
analogWrite(led, brightness);
brightness = brightness + fadeAmount;
if (brightness == 0 || brightness == 180) {
fadeAmount = -fadeAmount ;}
delay(38);}

BrethingLED.ino 582.0B
PoliceBoxBase.stl 143.3KB
PoliceBoxHat.stl 52.3KB
PoliceBoxText.stl 1.7MB
PoliceBoxTop.stl 108.3KB
PoliceBoxWindow.stl 7.7KB