<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bits and Bricks &#187; LEGO</title>
	<atom:link href="http://bitsandbricks.no/category/lego/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitsandbricks.no</link>
	<description>The life of a female geek</description>
	<lastBuildDate>Thu, 23 Jul 2015 12:08:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.39</generator>
	<item>
		<title>Getting started with Python on EV3</title>
		<link>http://bitsandbricks.no/2014/01/19/getting-started-with-python-on-ev3/</link>
		<comments>http://bitsandbricks.no/2014/01/19/getting-started-with-python-on-ev3/#comments</comments>
		<pubDate>Sun, 19 Jan 2014 21:12:05 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[ev3]]></category>
		<category><![CDATA[lego]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=268</guid>
		<description><![CDATA[So I&#8217;ve been diving head first into LEGO&#8217;s newest Mindstorms generation, called EV3. But seeing as I&#8217;m a Linux geek and a programmer, using LEGO&#8217;s own graphical drag-and-drop programming language from their windows/mac software was completely out of the question! &#8230; <a href="http://bitsandbricks.no/2014/01/19/getting-started-with-python-on-ev3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So I&#8217;ve been diving head first into LEGO&#8217;s newest Mindstorms generation, called EV3. But seeing as I&#8217;m a Linux geek and a programmer, using LEGO&#8217;s own graphical drag-and-drop programming language from their windows/mac software was completely out of the question! Now, the EV3 runs Linux out of the box, which is very cool, but it comes with some limitations, so to get going with a proper programming language, installing another Linux version was necessary. Luckily, the EV3 makes that so much simpler than the NXT did. Just pop a bootable OS on a micro SD card, stuff in the EV3, and voila, it will boot from the SD card! Pop the card back out, and the EV3 still has it&#8217;s factory firmware. No flashing needed! Neat!</p>
<p>So what programming language to use? Well, turns out some guy who calls himself Topikachu has already made a ready Linux image with Python installed, and even made Python libraries to interface with the EV3 sensors and motors. Does it get any better than that? He&#8217;s made a quick howto on how to install it, which you can read on his <a href="https://github.com/topikachu/python-ev3">github</a>. If you have a USB Wifi dongle too (currently only one is supported, but I&#8217;m sure more will be added in time), it was very easy to get it hooked up on wifi too. I just had to log in over usb as described, update the <a href="http://linux.die.net/man/5/wpa_supplicant.conf">wpa_supplicant.conf</a> and I was good to go without a cable. You may want to check out what IP your brick received before unplugging the usb cable though <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The Python API is really great, but I couldn&#8217;t find much documentation of it, so I had to read his code and look at his tests to figure out how to use it. Wasn&#8217;t too hard though, and here&#8217;s a little program I wrote just to test out that things were working (it doesn&#8217;t do much, basically just tries to crash :P)</p>
<pre>#!/usr/bin/python

import time

from ev3.rawdevice import motordevice
from ev3.rawdevice import analogdevice
from ev3.rawdevice import uartdevice

from ev3 import lego

motordevice.open_device()
analogdevice.open_device()
uartdevice.open_device() 

A = 0x01
B = 0x02
C = 0x04
D = 0x08

right = A
left = D
both = A+D

touch = lego.EV3TouchSensor(0)
ir = lego.EV3IRSensor(3)
ir.set_prox_mode()

motordevice.speed(both,20)

distance = 101

while True:
  time.sleep(1)
  if touch.is_pressed() == 1:
    motordevice.stop(both, brake=1)
    print "stopping\n"
    break

  cur_distance = ir.get_distance()
  if cur_distance &gt; distance:
    print "searching\n"
    motordevice.stop(both, brake=1)
    motordevice.speed(A, 20)
    time.sleep(1)
    motordevice.stop(A, brake=1)
    motordevice.speed(both,20)

  distance = cur_distance

motordevice.stop(both, brake=1)</pre>
<p>That doesn&#8217;t look so hard, does it? Here&#8217;s some additional notes I made for myself to remember what the different functions do and how to use them.</p>
<pre>Motors:
A = 0x01
B = 0x02
C = 0x04
D = 0x08
PORTS = A+B # Access both A and B at the same time
from ev3.rawdevice import motordevice
motordevice.open_device()

motordevice.speed(PORTS,20)
motordevice.stop(B,brake=1) # brake makes it actually brake the motor, not just stop turning it

from ev3.rawdevice import analogdevice
analogdevice.open_device()
touch = lego.EV3TouchSensor(0) # Note, the port numbering is 0-3, so the port marked 1 is 0, etc.
touch.is_pressed()

from ev3.rawdevice import uartdevice
uartdevice.open_device()
color = lego.EV3ColorSensor(3)
color.set_color_mode()
color.color_to_string() # This only works for color_mode
color.set_ref_raw_mode() # raw values, -127 -&gt; 127
color.get_value() # raw value from sensor sensor

ir = lego.EV3IRSensor(2)
ir.set_prox_mode() # proximity mode
ir.get_distance() # for prox mode
ir.set_remote_mode() # for using the remote control
ir.get_remote_command() # get remote control command
ir.set_seek_mode() # follow remote control when button pressed
ir.get_all_direction_and_distance #  for seek mode
ir.get_direction_and_distance(chan) #  for seek mode

# This is how I managed to read info from a Hitechnic accelerometer sensor (originally made for the NXT)
from ev3 import robot
from ev3 import sensor
robot.open_all_devices()
iicsensor = IICSensor()
iicsensor = sensor.IICSensor(1, 0x02)
iicsensor.read(0x42)</pre>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=268" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2014/01/19/getting-started-with-python-on-ev3/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Winter mountain: finishing up</title>
		<link>http://bitsandbricks.no/2013/01/16/winter-mountain-finishing-up/</link>
		<comments>http://bitsandbricks.no/2013/01/16/winter-mountain-finishing-up/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 10:58:09 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=260</guid>
		<description><![CDATA[I can see that the hard work on my mountain killed my blogging. I had planned to keep this updated with my progression, but I ended up spending all my free time building on it instead. The deadline was approaching &#8230; <a href="http://bitsandbricks.no/2013/01/16/winter-mountain-finishing-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I can see that the hard work on my mountain killed my blogging. I had planned to keep this updated with my progression, but I ended up spending all my free time building on it instead. The deadline was approaching too fast, so the stress caught me. So here&#8217;s all the further progress shots I took:</p>
<div style="width: 650px" class="wp-caption alignnone"><img class=" " alt="" src="http://farm9.staticflickr.com/8181/7992107893_5f969ed2d3_c.jpg" width="640" height="480" /><p class="wp-caption-text">The village has taken form</p></div>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8034/8064035949_96e58020ed_z.jpg" width="640" height="360" /><p class="wp-caption-text">Building upwards on the mountain side</p></div>
<p>&nbsp;</p>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8315/8064035055_7ef637bdc0_z.jpg" width="640" height="360" /><p class="wp-caption-text">Ski slope is taking shape</p></div>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8052/8093017433_193b7b70c8_z.jpg" width="640" height="360" /><p class="wp-caption-text">Closing the loop, now it&#8217;s a volcano! :P</p></div>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8467/8127263191_775eaf621a_z.jpg" width="640" height="480" /><p class="wp-caption-text">Ski jump in place, and ski slopes and tracks in place.</p></div>
<p>&nbsp;</p>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8334/8131535813_3ab9a396bc_z.jpg" width="640" height="480" /><p class="wp-caption-text">Building up the steep side</p></div>
<p>&nbsp;</p>
<div style="width: 650px" class="wp-caption alignnone"><img alt="" src="http://farm9.staticflickr.com/8333/8131555704_28c09378a2_z.jpg" width="640" height="480" /><p class="wp-caption-text">Details on the mountain side, trees and cabins.</p></div>
<p>At this point I was so panicky about finishing up in last few days, I didn&#8217;t take any more progress shots. A couple of days later, the mountain was to be moved and set up at the exhibition in Telenor Arena. More on that later <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Yes, I&#8217;ll be getting back into blogging now, and I&#8217;ll be doing some catch-up posts on what I&#8217;ve been busy with lately.</p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=260" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2013/01/16/winter-mountain-finishing-up/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Winter mountain: Placing the village, and finding the form</title>
		<link>http://bitsandbricks.no/2012/09/13/winter-mountain-placing-the-village-and-finding-the-form/</link>
		<comments>http://bitsandbricks.no/2012/09/13/winter-mountain-placing-the-village-and-finding-the-form/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 11:22:11 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=256</guid>
		<description><![CDATA[My mountain is slowly starting to find it&#8217;s form, and I&#8217;ve figured out a lot about how to build it, and where it will slope how steeply. I&#8217;ve also started to place the buildings in the village part of this &#8230; <a href="http://bitsandbricks.no/2012/09/13/winter-mountain-placing-the-village-and-finding-the-form/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>My mountain is slowly starting to find it&#8217;s form, and I&#8217;ve figured out a lot about how to build it, and where it will slope how steeply. I&#8217;ve also started to place the buildings in the village part of this layout, and landscape around them. So far, my biggest concern is if I have enough bricks. That may sound weird when I&#8217;ve ordered 30.000 bricks for this project, but they get used pretty quickly&#8230; It&#8217;s probably a bit like estimating an IT project, I should have multiplied by pi <img src="http://s.w.org/images/core/emoji/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Too bad it would have been very expensive to do so&#8230;</p>
<p><a href="http://farm9.staticflickr.com/8169/7976586091_466dc89366_z.jpg"><img class="alignnone" title="mountain shape" src="http://farm9.staticflickr.com/8169/7976586091_466dc89366_z.jpg" alt="" width="640" height="480" /></a></p>
<p><a href="http://farm9.staticflickr.com/8437/7976585843_c73deafc57_z.jpg"><img class="alignnone" title="village placement" src="http://farm9.staticflickr.com/8437/7976585843_c73deafc57_z.jpg" alt="" width="640" height="480" /></a></p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=256" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/09/13/winter-mountain-placing-the-village-and-finding-the-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My biggest project yet: a mountain</title>
		<link>http://bitsandbricks.no/2012/09/05/my-biggest-project-yet-a-mountain/</link>
		<comments>http://bitsandbricks.no/2012/09/05/my-biggest-project-yet-a-mountain/#comments</comments>
		<pubDate>Wed, 05 Sep 2012 16:30:55 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=252</guid>
		<description><![CDATA[I&#8217;ve finally gotten started on what is definitely my biggest project yet: a winter mountain for my winter village. I already have a lot of the houses that  I will use for it, so most of the work is on &#8230; <a href="http://bitsandbricks.no/2012/09/05/my-biggest-project-yet-a-mountain/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve finally gotten started on what is definitely my biggest project yet: a winter mountain for my winter village. I already have a lot of the houses that  I will use for it, so most of the work is on the landscaping. I have a acquired a massive amount of white bricks in different shapes, and have finally started to build with them. I have take over the kitchen table (with even an extra plate added on the side), and have layed out the size it will be in baseplates. There isn&#8217;t much to see yet, but here&#8217;s an overview picture to show he scale of it&#8230;</p>
<p><a href="http://farm9.staticflickr.com/8182/7937462456_2c57f4c258.jpg"><img class="alignnone" title="Mountain layout wip" src="http://farm9.staticflickr.com/8182/7937462456_2c57f4c258.jpg" alt="" width="500" height="375" /></a></p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=252" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/09/05/my-biggest-project-yet-a-mountain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A trip to the hospital</title>
		<link>http://bitsandbricks.no/2012/08/13/a-trip-to-the-hospital/</link>
		<comments>http://bitsandbricks.no/2012/08/13/a-trip-to-the-hospital/#comments</comments>
		<pubDate>Mon, 13 Aug 2012 15:30:49 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=245</guid>
		<description><![CDATA[While photographing my hospital, I also had some fun taking shots from a minifig&#8217;s point of view with my phone. I tried to get good lighting inside, and I think the pictures turned out pretty OK, so here&#8217;s a little &#8230; <a href="http://bitsandbricks.no/2012/08/13/a-trip-to-the-hospital/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>While photographing my hospital, I also had some fun taking shots from a minifig&#8217;s point of view with my phone. I tried to get good lighting inside, and I think the pictures turned out pretty OK, so here&#8217;s a little story told through those pictures.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684088782/in/set-72157630837709928"><img class="alignright" title="Waiting" src="http://farm8.staticflickr.com/7253/7684088782_b5465d7748.jpg" alt="" width="500" height="282" /></a></p>
<p>&#8220;Whoah, that guy does not look good. I better keep my distance, in case what he has is contagious. I hope I don&#8217;t they don&#8217;t make me sit here and wait next to him&#8230;&#8221;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684089358/in/set-72157630837709928/"><img class="alignright" title="Reception" src="http://farm9.staticflickr.com/8005/7684089358_fdf320a678.jpg" alt="" width="282" height="500" /></a>&#8220;Hello Sir, how may I help you?&#8221;<br />
&#8220;Uhm, hi, I&#8217;m here to visit my daughter who was brought in earlier to give birth to my grandchild.&#8221;<br />
&#8220;Ok, then you need to take the elevator up to the first floor&#8230;&#8221;<br />
&#8220;Eh, sorry what, first floor? Isn&#8217;t this the first floor?&#8221;<br />
&#8220;Well, yes, in Norway it is, but we&#8217;re speaking English now, so this is the ground floor, and you need to take the elevator up to the first floor, so that would be second floor in Norwegian then.&#8221;<br />
&#8220;Uh, yeah, uhm, ok&#8230; and then?&#8221;<br />
&#8220;Then you just follow the corridor, past the toilets, and walk to the end, there&#8217;s the maternity ward.&#8221;<br />
&#8220;Ok, what room is she in?&#8221;<br />
&#8220;You didn&#8217;t tell me her name&#8230;&#8221;<br />
&#8220;Oh, right, it&#8217;s Johanna Hansen&#8221;<br />
&#8220;One moment please&#8230; She&#8217;s in room 103&#8243;<br />
&#8220;Ok, so second floor, 103, got it, thank you!&#8221;<br />
&#8220;I thought I said first floor, I hope he presses the right button in the elevator&#8230;&#8221;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684089760/in/set-72157630837709928/"><img class="alignleft" title="Doctor's office" src="http://farm8.staticflickr.com/7253/7684089760_3333216d98.jpg" alt="" width="282" height="500" /></a></p>
<p>&#8220;Oh, the doctor&#8217;s office&#8217;s door is open. I wonder if he has a patient in there&#8230; No, don&#8217;t look, there could be more contagious people in there! Or maybe he&#8217;s just bracing himself to call in the sick dude in the waiting room. I bet doctor&#8217;s are afraid to catch all the diseases coming in here too&#8230;&#8221;<br />
&#8220;Pling!&#8221;<br />
&#8220;Ah, there&#8217;s the elevator. Now let&#8217;s see&#8230; Second floor, was it? No, first floor, no, eh&#8230; Shit&#8230; Ok, I&#8217;ll try the 2-button.&#8221;</p>
<p>*elevator music*</p>
<p>&#8220;Hum di dum&#8230;.&#8221;</p>
<p>&#8220;Pling!&#8221;</p>
<p>&#8220;Ok, here we go&#8230;&#8221;</p>
<p>&nbsp;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7771502118/in/set-72157630837709928"><img class="alignright" title="Cafeteria" src="http://farm9.staticflickr.com/8429/7771502118_90726b0502.jpg" alt="" width="394" height="500" /></a>&#8220;Oh, this looks like the cafeteria. Did the receptionist mention that in any way? No, I thought he only said something about toilets&#8230; Maybe it wasn&#8217;t this floor after all. Hm, I could have a look around on this floor first, just to be sure. But maybe I&#8217;ll grab something to eat first, I am sort of hungry, and that croissant looks delicious.&#8221;<br />
&#8220;Hello, can I get you anything?&#8221;<br />
&#8220;Yes, I&#8217;ll have a croissant please.&#8221;<br />
&#8220;Here you are Sir, that&#8217;ll be 10 bucks.&#8221;<br />
&#8220;Let&#8217;s see&#8230; Here!&#8221;<br />
&#8220;Thank you.&#8221;<br />
&#8220;Btw, is the maternity ward on this floor?&#8221;<br />
&#8220;No, it&#8217;s one floor down.&#8221;<br />
&#8220;Ah, ok, thank you.&#8221;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684091218/in/set-72157630837709928"><img class="alignleft" title="Lunch" src="http://farm9.staticflickr.com/8422/7684091218_185986da9f.jpg" alt="" width="282" height="500" /></a>&#8220;Maybe I&#8217;ll just sit over here and eat my croissant before I go down. Wouldn&#8217;t want them to think I prioritized getting some food before coming to visit. Oh man, I&#8217;m going to be such a lousy grandfather. Mmmm, this croissant is quite good. I wonder what that guy over there is here for. He&#8217;s so nicely dressed. Oh, what if he&#8217;s the hospital administrator? Nah, I doubt that.&#8221;</p>
<p>&#8220;Munch munch&#8221;</p>
<p>&#8220;Ok, that&#8217;s the end of the croissant, better head down a floor then. Time to go see my grandchild!&#8221;</p>
<p>&#8220;Pling!&#8221;</p>
<p>&#8220;Ok, so, button 1 this time.&#8221;</p>
<p>&#8220;Pling!&#8221;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684090116/in/set-72157630837709928"><img class="alignright" title="Babies" src="http://farm9.staticflickr.com/8142/7684090116_5b4ff9db71.jpg" alt="" width="282" height="500" /></a>&#8220;Ok, here are some toilets! So just follow this corridor then&#8230; Oh! babies! Oh, hey Dan! How is Johanna? Why aren&#8217;t you in there with her?&#8221;<br />
&#8220;I fainted, so they threw me out&#8230;&#8221;<br />
&#8220;She&#8217;s still in labour?&#8221;<br />
&#8220;Yes, apparently, we&#8217;re having twins!&#8221;<br />
&#8220;You are? Oh dear&#8230; congratulations then!&#8221;<br />
&#8220;Yes, well, I&#8217;m a bit overwhelmed&#8230; If you want to see the first twin, it&#8217;s her right inside the window here. They don&#8217;t trust me to hold her right now because I fainted earlier, but I&#8217;m sure they&#8217;ll let you go inside and see her. I hope Johanna is ok in there though, apparently, the second twin was a bit reluctant to come out&#8230;&#8221;<br />
&#8220;Oh my, yes, I hope she&#8217;s ok. I don&#8217;t think I should go in, I&#8217;d probably faint too! I did when Johanna was born&#8230; I&#8217;ll just go in and see the first born then. Does she have a name yet?&#8221;<br />
&#8220;No, when we were told it was twins, we wanted to reevaluate the name we had in mind, since we now need two names.&#8221;<br />
&#8220;I see&#8230;&#8221;</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684088476/in/set-72157630837709928/"><img class="alignright" title="Cooler" src="http://farm9.staticflickr.com/8428/7684088476_9dc9a4b270.jpg" alt="" width="367" height="500" /></a>&#8220;There&#8217;s my little girl! Oh, why are you screaming? Is grandpa scary? I&#8217;m sorry I didn&#8217;t bring you anything. I doubt your parents would have wanted me to let you eat croissants anyway! Oh, there&#8217;s a water cooler out there, why didn&#8217;t I see that earlier? Hey, look Dan, your daughter is so cute! I&#8217;m sure they&#8217;ll let you come in and hold her now, have a cup of water, and you&#8217;ll be fine!&#8221;<br />
&#8220;Is the old man saying something to me from in there? I can&#8217;t tell through the sound proof glass. I&#8217;ll just smile and nod&#8230; Maybe I&#8217;ll have a glass of water. Oh, he smiles&#8230; He must be happy to see his granddaughter.&#8221;<br />
&#8220;That&#8217;s the spirit! He&#8217;s going to make a fine father&#8230;&#8221;</p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=245" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/13/a-trip-to-the-hospital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mini hospital</title>
		<link>http://bitsandbricks.no/2012/08/08/mini-hospital/</link>
		<comments>http://bitsandbricks.no/2012/08/08/mini-hospital/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 08:48:49 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=242</guid>
		<description><![CDATA[Contests really make me build lots of crazy things, and the one I built the hospital for had a category for a mini building as well, so I figured  I would make a mini version of my hospital I think &#8230; <a href="http://bitsandbricks.no/2012/08/08/mini-hospital/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Contests really make me build lots of crazy things, and the one I built the hospital for had a category for a mini building as well, so I figured  I would make a mini version of my hospital <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /> I think it looks a bit weird, but it&#8217;s definitately recognizable.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7685548682/in/set-72157630837709928"><img class="alignnone" title="Mini hospital" src="http://farm8.staticflickr.com/7263/7685548682_948a0a724a.jpg" alt="" width="387" height="500" /></a></p>
<p>It even has a mini ambulance <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><a href="http://www.flickr.com/photos/cecilihf/7685549022/in/set-72157630837709928/"><img class="alignnone" title="Mini hospital back" src="http://farm8.staticflickr.com/7276/7685549022_1aca20fb31.jpg" alt="" width="385" height="500" /></a></p>
<p>It&#8217;s not easy to see from this angle, but I even tried to emulate the bench on the back. I didn&#8217;t want to take any shots at an angle, because the sides look really crappy because of the headlight bricks <img src="http://s.w.org/images/core/emoji/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>&nbsp;</p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=242" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/08/mini-hospital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kids playground</title>
		<link>http://bitsandbricks.no/2012/08/07/kids-playground/</link>
		<comments>http://bitsandbricks.no/2012/08/07/kids-playground/#comments</comments>
		<pubDate>Tue, 07 Aug 2012 08:00:10 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=238</guid>
		<description><![CDATA[The contest for which I made the modular hospital also had a category for making a parks and recreation area that would fit into the modular standard. I chose to make a kids playground, heavily inspired by how I remember &#8230; <a href="http://bitsandbricks.no/2012/08/07/kids-playground/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The contest for which I made the modular hospital also had a category for making a parks and recreation area that would fit into the modular standard. I chose to make a kids playground, heavily inspired by how I remember playgrounds from my own childhood.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7686483420/in/set-72157630843049002/"><img class="alignnone" title="Kids playground" src="http://farm8.staticflickr.com/7130/7686483420_d41b0be03f.jpg" alt="" width="500" height="392" /></a></p>
<p>The stripes on the pavement is an attempt at making a hopscotch court, which was not easy to emulate in this way. The icecream seller has found a good spot for selling his icecream though <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><a href="http://www.flickr.com/photos/cecilihf/7686483062/in/set-72157630843049002/"><img class="alignnone" title="Kids playground - back" src="http://farm8.staticflickr.com/7107/7686483062_d3d9398640.jpg" alt="" width="500" height="388" /></a></p>
<p>The yellow rocking animal thingy is attached to a flexible tube that actually makes it able to move in the way the real thing does (I do not know what those things are called, but I remember them fondly from when I was a little kid).</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7686482734/in/set-72157630843049002/"><img class="alignnone" title="Kids playgroud - side" src="http://farm9.staticflickr.com/8292/7686482734_ebcb4b60d9.jpg" alt="" width="500" height="384" /></a></p>
<p>One of my favourite things of this playground is the swing. I was testing out a different use for that tyre, but seeing how it looked with the chain through it made me realize I had to use at as a swing attached to a tree in this way <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Also notice the kid burying his legs in the sandbox <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=238" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/07/kids-playground/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Norwegian ambulance</title>
		<link>http://bitsandbricks.no/2012/08/06/norwegian-ambulance/</link>
		<comments>http://bitsandbricks.no/2012/08/06/norwegian-ambulance/#comments</comments>
		<pubDate>Mon, 06 Aug 2012 08:00:34 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=235</guid>
		<description><![CDATA[I mentioned it when talking about my modular hospital, because that&#8217;s what I made it for, but I think it deserves it&#8217;s own post For the first time, I have created a car in LEGO I am pleased with. I &#8230; <a href="http://bitsandbricks.no/2012/08/06/norwegian-ambulance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I mentioned it when talking about my modular hospital, because that&#8217;s what I made it for, but I think it deserves it&#8217;s own post <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /> For the first time, I have created a car in LEGO I am pleased with. I have made a few feeble attempts previously, but nothing I have really wanted to show off. This time, since I was making the modular hospital for a contest, I wanted the ambulance to look good. I got some expert tips from a friend who loves to build cars, and got going.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7692709252/in/set-72157630857204540"><img class="alignnone" title="Ambulance" src="http://farm8.staticflickr.com/7132/7692709252_1751b0e900.jpg" alt="" width="500" height="368" /></a></p>
<p>I wanted it to look like a <a href="http://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LN-OOA_11.jpg/640px-LN-OOA_11.jpg">Mercedes Rescueline</a> as used in Norway when I grew up in the 80s/90s, and I think I achieved the look fairly well at this scale. One of the things I would never have thought of without the help of my car loving friend is the use of those wheels. They&#8217;re actually a smaller type wheels from the tiny cars Lego make that are way smaller than minifig scale, with a motorcycle tyre on top of the original tyre. It fits perfectly, and looks great <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><a href="http://www.flickr.com/photos/cecilihf/7692709750/in/set-72157630857204540/"><img class="alignnone" title="Ambulance open door" src="http://farm9.staticflickr.com/8001/7692709750_721a433da6.jpg" alt="" width="500" height="421" /></a></p>
<p>The <a href="http://www.flickr.com/photos/cecilihf/7692709966/in/set-72157630857204540/">back door</a> opens to reveal space for a stretcher, an intravenous line, a seat for a paramedic, and a defibrillitor.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684500008/in/set-72157630837709928/"><img class="alignnone" title="Hospital with ambulance" src="http://farm9.staticflickr.com/8014/7684500008_92bce73a1d.jpg" alt="" width="327" height="500" /></a></p>
<p>See how it just fits in the gate to it&#8217;s garage in the hospital <img src="http://s.w.org/images/core/emoji/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=235" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/06/norwegian-ambulance/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Modular hospital: interior details</title>
		<link>http://bitsandbricks.no/2012/08/05/modular-hospital-interior-details/</link>
		<comments>http://bitsandbricks.no/2012/08/05/modular-hospital-interior-details/#comments</comments>
		<pubDate>Sun, 05 Aug 2012 08:51:43 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=232</guid>
		<description><![CDATA[Last time I talked about my modular hospital, but the only thing I showed from the inside was the elevator door design. I wanted my hospital to have a full interior, filling all sorts of functions a hospital should. Obviously, &#8230; <a href="http://bitsandbricks.no/2012/08/05/modular-hospital-interior-details/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Last time I talked about my modular hospital, but the only thing I showed from the inside was the elevator door design. I wanted my hospital to have a full interior, filling all sorts of functions a hospital should. Obviously, my hospital is too small to have everything imagineable, but I think I managed to squeeze in enough to make it seem like a fully functional hospital.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684485718/in/set-72157630837709928"><img class="alignnone" title="Hospital ground floor" src="http://farm9.staticflickr.com/8145/7684485718_bc3c69ff3d.jpg" alt="" width="500" height="500" /></a></p>
<p>The ground floor has the reception, a waiting area and a doctor&#8217;s office. Quite tight spaces, the <a href="http://www.flickr.com/photos/cecilihf/7684487180/in/set-72157630837709928/">receptionist</a> is the only one who has a fairly good amount of space. The doctor&#8217;s office has a chair for the patient and a patient bed, but I would say it&#8217;s a bit hard to move around in there <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> The waiting area has room for three people, and has a couple of <a href="http://www.flickr.com/photos/cecilihf/7684486156/in/set-72157630837709928/">plants</a> to keep them company.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684470766/in/set-72157630837709928"><img class="alignnone" title="Hospital first floor" src="http://farm8.staticflickr.com/7107/7684470766_a65258f10c.jpg" alt="" width="396" height="500" /></a></p>
<p>The first floor has a maternity ward. It has room for three <a href="http://www.flickr.com/photos/cecilihf/7684490766/in/set-72157630837709928">birthing mothers</a>, four <a href="http://www.flickr.com/photos/cecilihf/7684490020/in/set-72157630837709928/">babies</a>, and seats for the anxious dads to wait outside. One of the last minute add-ons to this floor, that ended up being one of my favourite interior details, is the <a href="http://www.flickr.com/photos/cecilihf/7684490482/in/set-72157630837709928">water cooler</a>.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684469842/in/set-72157630837709928"><img class="alignnone" title="Hospital second floor" src="http://farm9.staticflickr.com/8425/7684469842_6dc7bd0ca1.jpg" alt="" width="366" height="500" /></a></p>
<p>The second floor has the cafeteria. It&#8217;s used by both <a href="http://www.flickr.com/photos/cecilihf/7684494266/in/set-72157630837709928/">visitors</a> and employees. It serves a <a href="http://www.flickr.com/photos/cecilihf/7684494574/in/set-72157630837709928">healthy menu</a>, but also sells some treats like croissants <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> This floor also has an MRI machine. That one was not easy to make both functional (able to fit a minifig that could slide in and out), look like an actual MRI machine, and fit into the tight space of the hospital. The operator of the machine is shielded behind a <a href="http://www.flickr.com/photos/cecilihf/7684489708/in/set-72157630837709928/">glass wall</a>. The last thing on this floor (except the balcony) is a room with bedding for two patients, which was <a href="http://www.flickr.com/photos/cecilihf/7684488034/in/set-72157630837709928">excruciatingly hard to photograph</a> because of the obtrusion the window design is making on the inside.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684469570/in/set-72157630837709928"><img class="alignnone" title="Hospital third floor" src="http://farm9.staticflickr.com/8152/7684469570_aa124cd229.jpg" alt="" width="374" height="500" /></a></p>
<p>Last thing my hospital had to have was an operating room, which has an <a href="http://www.flickr.com/photos/cecilihf/7684488552/in/set-72157630837709928">operating table</a>, a big lamp to provide enough lights, a monitor and a sink for the surgeons to <a href="http://www.flickr.com/photos/cecilihf/7684488402/in/set-72157630837709928/">scrub in</a>. This shot also shows the helicopter landing pad, which can be used to transport patients who can&#8217;t be treated at this small hospital to a larger one.</p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=232" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/05/modular-hospital-interior-details/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Modular hospital: my first modular building!</title>
		<link>http://bitsandbricks.no/2012/08/04/modular-hospital-my-first-modular-building/</link>
		<comments>http://bitsandbricks.no/2012/08/04/modular-hospital-my-first-modular-building/#comments</comments>
		<pubDate>Sat, 04 Aug 2012 08:42:22 +0000</pubDate>
		<dc:creator><![CDATA[Cecilie]]></dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://bitsandbricks.no/?p=230</guid>
		<description><![CDATA[I have been quite busy building lately. And I will probably be quite busy building for the coming monts as well, as I&#8217;m building lots of stuff for an event in November&#8230; But more about that later 😉 I have &#8230; <a href="http://bitsandbricks.no/2012/08/04/modular-hospital-my-first-modular-building/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I have been quite busy building lately. And I will probably be quite busy building for the coming monts as well, as I&#8217;m building lots of stuff for an event in November&#8230; But more about that later <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>I have just finished my hospital! I used Ullevål Universitetssykehus in Oslo as inspiration for the facade, although the original is much larger than my building&#8230; <a href="http://www.flickr.com/photos/cecilihf/7684500654/in/set-72157630837709928"><img class="alignnone" title="Hospital front" src="http://farm9.staticflickr.com/8161/7684500654_52d8cfb555.jpg" alt="" width="383" height="500" /></a></p>
<p>The hardest part of getting the facade right was those window arches. Took me quite some time to figure out how to get those right. I&#8217;m quite pleased with the result.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684460010/in/set-72157630837709928/"><img class="alignnone" title="Hospital back" src="http://farm9.staticflickr.com/8150/7684460010_e23a6cf6fc.jpg" alt="" width="350" height="500" /></a></p>
<p>On the back I chose to emulate an expansion that had been made to the building in a more modern architecture, to break it up a little, but also to add more room inside. I think it worked quite well to serve both purposes <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Another thing  I spent a lot of time working on for this hospital was the elevator design. A hospital has to have an elevator, and I wanted mine to actually have doors that worked and looked like real elevator doors. Not exactly easy in a tight space with LEGO. This is what the result looks like.</p>
<p><a href="http://www.flickr.com/photos/cecilihf/7684492960/in/set-72157630837709928/"><img class="alignnone" title="Elevator" src="http://farm9.staticflickr.com/8009/7684493484_be8a181787.jpg" alt="" width="500" height="500" /></a></p>
<p>Click the picture for a view of the doors in the open position <img src="http://bitsandbricks.no/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /> The doors are not really attached to anything, but they are locked in place on top and rests against the wall, so they don&#8217;t fall out&#8230; until the elevator is moved to another floor, then they tend to fall out easily into the elevator shaft <img src="http://s.w.org/images/core/emoji/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>There are lots more pictures to check out on flickr, and  I will also show some more of them here and talk about the interior and the ambulance I made for this in a later post. Stay tuned <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
 <img src="http://bitsandbricks.no/?feed-stats-post-id=230" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://bitsandbricks.no/2012/08/04/modular-hospital-my-first-modular-building/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
