Find your perfect bunk bed with storage solutions in your choice of single, king single, double or queen sizes. Rest assured, there are no safety concerns here as the mattress is enclosed enough to stop little ones tumbling out. measurements: 1" (Clearance) - from the floor to the underside of the bottom bunk … http://www.jacobs-online.biz/nichrome/NichromeCalc... http://www.ultimatepapermache.com/paper-mache-clay... http://playground.arduino.cc/Main/AnalogAndDigital... How to Survive Your First Winter With Houseplants, RC Arduino Domino Layer With Bluetooth App Control. It was a seriously easy build, with just a saw to cut the boards and a drill and some screws to put it all together. Crafted from solid pine wood and finished with a neutral light gray, this bed will match any color scheme. Seeing as the whole think was apart, I painted the fan body green using enamel spray. I painted the depressions in the 'bark' dark colours, then brushed lighter shades over the surface using the side of the brush. All I needed was some sturdy legs (45x45mm pine) and a few extra lengths of 19x90mm dressed kiln dried pine. I just used regular white glue (pva) to stick the layers together. Treehouse beds bring both a touch of nature and magic to children’s rooms. I look forward to hearing from you. Tree House Bunk Bed – Rustic White Wall with Light Grey Roof and Frame. A one-of-a-kind bunk bed, it'll make any kid's bedroom feel like a secret hideout. The style is a little bit different here- it’s marketed as a little cottage … I added a power switch and a potentiometer to adjust the LED brightness in a little control box under the bunk. typedef enum {FADEUP, ON, FADEDOWN, OFF} FireflyState; typedef struct FireFlyStruct { byte pin; //PWM output pins are 3,5,6,9,10,and 11 FireflyState state; //used to determine what state the LED is in, fading up/down or on/off unsigned long value; //used as LED's current value, //Analog Values int duration; //specifies how long the led will be on/off. Mike :{), What a fantastic bunk bed. We offer unique hand made house bed models, that are designed as baby cribs, children furniture or bunk beds and loft beds for kids and teenagers. //Used to indicate the 4 states we can be in. Sleep The Dream. In addition to the classic, two-bed stack the Frankie Bunk offers a range of add-ons like a trundle bed on concealed castors (no scary runners), Integrated reading lights with USB port, Clip on Bedside Tables and more. P'kolino Kid's House Twin Bed - Dark Grey Roof with Light Grey Walls. I simply ran my fingers across the surface to get a fairly realistic bark texture. Australia's greatest range of strong bunk beds. Nice touch with the ceiling fan and homemade tree!!! We offer unique hand made house bed models, that are designed as baby cribs, children furniture or bunk beds … Time will tell how durable it is! I made collars to go round some of the tree branches as some of them i cut too short. Then don’t let your furniture… If we have, then we set that LED back to the OFF state and tell it to wait again without turning on. Minimal and sleek lines keep the bed house aesthetically pleasing so it would look great in any interior, while being functional and serving as a play house and bed at the same time. Great project. The enclosed roof and walls of the tree house will keep little heads away from the fan, but there was not enough clearance between the fan blades and the roof of the tree house. Share it with us! void initialize() { for (int i=0; i < (sizeof(fireflies)/sizeof(Firefly)); i++) { //Why am I using this pointer notation of taking the address of the object //and then dereferencing it? I cut out each layer using a DIY hot wire cutter (bought some nichrome wire from bunnings and attached to a 12v car battery see http://www.jacobs-online.biz/nichrome/NichromeCalc... for calculations). $249.99. I hid all the messy wiring by stretching a sheet of black polyester across the underside of the bunk and securing it in place with thin pieces of pine molding. We realised that the existing ceiling fan was going to cause a problem with the bunk bed due to small size of our room. Designed to inspire the imagination and enchant your little ones, our cosy treehouse beds … Bunkers Bunk Beds & Loft Beds are famous for incredible strength. //Allows us a chance to make sure all of the LED's are connected and working before the program starts //and when we hit reset on the arduino. I wanted a rustic look, so i found a source of UNTREATED rough sawn cypress from a timber yard (all the pine was treated and kiln dried was too expensive). //These values are in milliseconds. The Little Cottage Loft Design. We wanted to make the lower bed perpendicular to the bunk, so i figured the most practical solution would be to create a fully independent single bed from parts of the bunk. That'll take them through years of fun and memories for life time!!! £1,800.00. As your children grow, the need for durable furniture grows with them – and our bunk beds for kids are perfect examples of high-quality bedroom furniture that will stand up to even the most boisterous adventures. Create memories today and speak to the bunk bed specialists. #define DIGITAL_MIN_OFF 4410 #define DIGITAL_MAX_OFF 30000 #define DIGITAL_MIN_ON 210 #define DIGITAL_MAX_ON 2100, //The number of levels of fade before the LED is off with a digital PWM. boolean isMaxFireflies() { boolean retValue = false; int cnt = 0; for (int i=0; i < (sizeof(fireflies)/sizeof(Firefly)); i++) { Firefly *ff = &fireflies[i]; if (ff->state != OFF) cnt++; } if (cnt >= MAX_FIREFLIES_ON) { retValue = true; } return retValue; }. It is 12mm thick, but was still a little heavy for the bed (considering it for cladding only), but i couldn't find anything better. For older children with high ideas, we have the famed Mathy By Bols Treehouse Bed. There is nothing better than a tree house, except maybe one in your room. It was to show someone how to do it. L shape bunks, longwall, single on double or traditional configuration. £2,000.00. 00 I made the blades short enough to avoid the roof of the tree house and made the blades wider to compensate for the reduced length. Treehouse Bunk Bed 78.25"Wx54"Dx74"H Design featuring cutout trees, cloud details and a pitched roof The upstairs doubles as an extra bed for sleepovers. The main part of this project is the bunk bed. Twin Over Twin Bunk Bed, Wood Twin House Bed Loft Bed Bedroom Furniture with Roof, Window, Guardrail, Ladder for Kids/Teens/Girls/Boys (Antique White) 4.9 out of 5 stars 10 $415.99 $ 415 . With a sturdy, house-like structure and a neutral palette, you can create a bed as unique as your child. I also found i needed slightly longer bolts to attach the bed frame to the legs due to the larder sized legs. Unsurprisingly one of our most iconic and most popular themed cabin bed ranges, our treehouse bed creates a cosy, safe sleep space and an exciting play cabin all in one. Sometimes a kids favorite place to spend time in is their treehouse, and with this playful twin bunk bed shaped like a house, your kids will go to sleep pretending they’re still outside playing. boolean isAnalog(int pin) { int length = sizeof(analogPins)/sizeof(*analogPins); for (int i=0; i. Here are some information that might be useful for someone if they have a similar room as ours: Room size: 10 feet x 12 feet Minimum ceiling height: 96" (8 feet) Approx. Posted in Blog, Creative Inspiration, Transform It Tagged bunk beds, creativie, maple branches, tree house permalink. Firefly *ff = &fireflies[i]; ff->pin = allPins[i]; if (i < MAX_FIREFLIES_ON) ff->state = ON; else ff->state = OFF; ff->value = 0; //Digital Values ff->time = 0; ff->toggle = true; ff->fade = 0; ff->fadeWait = 0; if (i < MAX_FIREFLIES_ON) { if (isAnalog(ff->pin) == true) ff->duration = random(ANALOG_MIN_ON, ANALOG_MAX_ON); else ff->value = millis() + random(DIGITAL_MIN_ON, DIGITAL_MAX_ON); } else { if (isAnalog(ff->pin) == true) ff->duration = random(ANALOG_MIN_OFF, ANALOG_MAX_OFF); else ff->value = ff->time + random(DIGITAL_MIN_OFF, DIGITAL_MAX_OFF); } } }, //Determine how many LED's are currently ON and if that is equal to MAX_FIREFLIES_ON, return true. Whether your child loves playing house or having their own “hide-out”, this whimsically, unique bunk bed delivers! I wired together clusters of 6 LEDs to each PWM output of the arduino and added a 1k ohm resistor to each led to keep the current down (they didnt need to be all that bright) and ensure all the leds would not overload the arduino. //Used for our delay of 10ms for analog. reclaimed timber would be great if you could find it. As an aside, the paper clay was very attractive to rats (must have been the flour in the mix), the varmints took big chunks out of my tree as it was drying overnight - but to my glee, the plaster in the mixture ended up killing the rats!!! Featuring a step ladder rising into a super cute tree house cabin. Is the conventional longitudinal triple bunk bed hampering your late night conversations? When the firefly has finished it's FADEUP, it will determine a random duration for how long to keep the LED on. P'kolino Kid's House Twin Bed - White Wall & Frame with Grey Roof. assembled measurements: 78" (Length) 42" (Depth) 82" (Height) - from the floor to the highest point of the bunk bed roof 14" (Clearance) - between the top of the bunk bed roof to my 96" (8 feet) ceiling Other approx. Children will adore this magical retreat that evokes the spirit and appeal of an outdoor tree house. This instructable documents the fun I had building a 'tree house' bed for my daughter. My code is below (feel free to let me know if you have any suggestions, I'm still learning arduino). Choose from contactless Same Day Delivery, Drive Up and more. Feel free to ask your questions, click -CONTACT ME- at the bottom of the page. Treehouse Bunk Bed With A Slide. I bought a cheap 2nd hand Ikea Mydal bed, its a nice simple frame and the added benefit is that a model of the bed is available on the sketchup 3D warehouse.