<?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>turtlethink.com &#187; DIY</title>
	<atom:link href="http://turtlethink.com/tag/diy/feed/" rel="self" type="application/rss+xml" />
	<link>http://turtlethink.com</link>
	<description>turtles like technology</description>
	<lastBuildDate>Mon, 24 May 2010 20:56:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Auduino: DIY Arduino Synthesizer</title>
		<link>http://turtlethink.com/2010/03/auduino-diy-arduino-synthesizer/</link>
		<comments>http://turtlethink.com/2010/03/auduino-diy-arduino-synthesizer/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:26:21 +0000</pubDate>
		<dc:creator>Mark Kizelshteyn</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[FabLab]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Auduino]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Synthesizer]]></category>

		<guid isPermaLink="false">http://turtlethink.com/?p=1070</guid>
		<description><![CDATA[My first physical computing project is complete! The Auduino: A DIY synthesizer.

Auduino: DIY Arduino Synthesizer from Mark Kizelshteyn on Vimeo.

A fantastic project by the tinker.it (Arduino) team, and I highly recommend it to anyone who is interested in getting into electronics, using Arduino or just wants to build a synth. All code, designs and schematics [...]]]></description>
			<content:encoded><![CDATA[<p>My first physical computing project is complete! <a href="http://code.google.com/p/tinkerit/wiki/Auduino">The Auduino</a>: A DIY synthesizer.</p>
<p><center><object width="900" height="675"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9898762&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9898762&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="900" height="675"></embed></object>
<p><a href="http://vimeo.com/9898762">Auduino: DIY Arduino Synthesizer</a> from <a href="http://vimeo.com/user1329559">Mark Kizelshteyn</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p></center></p>
<p>A fantastic project by the tinker.it (Arduino) team, and I highly recommend it to anyone who is interested in getting into electronics, using Arduino or just wants to build a synth. All code, designs and schematics are open under Creative Commons Attribution-Noncommercial License. All files (designs, code et cetera) I used/made can be downloaded below. </p>
<p>A friend showed me his Auduino, and I needed to build one too! I decided to make a few modifications to the original. I added a switch that enables a light dependent resistor (LDR) to control the rate of the noise, which essentially means the more light that hits the resistor, the faster the tempo. When the switch is on, it disables the associated potentiometer and enables the LDR.  It&#8217;s a fun addition and you get the chance to put your whole body (or just hand) into the synth. </p>
<p>I also did not want to commit to one mapping of the Auduino &#8212; I liked both the the smooth frequency and the stepped pentatonic mapping, so I added a switch to move between the two synthesiser parameters.  </p>
<p>Section of edited code:<br />
<code><br />
 if (digitalRead(SWITCH)) {<br />
    // Smooth frequency mapping<br />
    //syncPhaseInc = mapPhaseInc(analogRead(SYNC_CONTROL)) / 4;</p>
<p>     // Stepped mapping to MIDI notes: C, Db, D, Eb, E, F...<br />
    syncPhaseInc = mapMidi(analogRead(SYNC_CONTROL));<br />
  }<br />
 else { </p>
<p>    // Stepped pentatonic mapping: D, E, G, A, B<br />
    syncPhaseInc = mapPentatonic(analogRead(SYNC_CONTROL));<br />
 }<br />
</code><br />
This is the schematic for the way I wired my Auduino. I used <a href="http://fritzing.org/">Fritzing</a> software, which is also a great beginner tool for prototyping your circuit board. Fritzing is a neat open source project, I recommend checking them out. </p>
<p><a href="http://turtlethink.com/wp-content/uploads/2010/03/Auduino_Schematic.jpg"><img src="http://turtlethink.com/wp-content/uploads/2010/03/Auduino_Schematic.jpg" alt="" title="Auduino_Schematic" width="668" height="654" class="aligncenter size-full wp-image-1072" /></a> <BR></p>
<p>Lastly, I needed to design an enclosure, which was also a first. Inspired by enclosure extraordinaire, Xander (see his work at <a href="http://machinecollective.org">machinecollective.org</a>), I designed a simple yet functional enclosure in Illustrator and cut it using a laser cutter. After two failed enclosures, the third one fit! I initially wanted to have it enclosed in black satin acrylic, but I ended up with a transparent enclosure so I could see the components. In retrospect, I should have stuck with the black as the transparency detracts from the minimilist aesthetic I sought. I have attached my designs here &#8212; feel free to use/modify (CC license). </p>
<p>How does it work? </p>
<p>Tinker.it explains: &#8220;Sound is generated by playing the same noise (&#8216;grain&#8217;) repeatedly at very high speed. This merges into a tone that is an audible hybrid of the repetition rate and the original grain. It sounds quite similar to an oscillator with two resonating bandpass filters, although the different architecture means there are lots of additional interesting noises at parameter extremes. The grain consists of two triangular waves of adjustable frequency, and adjustable decay rate. This is based on FOF synthesis model, but using triangle waves instead of sine and using a rectangular window. The repetition rate is set by another control.&#8221; </p>
<p>Build one too! After spending the last few months at the CabFabLab, I have been become enamored by physical computing, and I have been reading <a href="http://blog.makezine.com/">makezine</a> fairly religiously now. If you are just getting into this world, like me, it is a fun blog to read. </p>
<p>Resources:<br />
- The Google group that details the project <a href="http://code.google.com/p/tinkerit/wiki/Auduino">here</a>.<br />
- My minor edit to the code can be found <a href="/auduino_MOD3.pde">here</a>.<br />
- My illustrator designs can be found <a href="/Auduino_FinalSketch.pdf">here</a>.<br />
- My Fritzing file (schematic details) can be found <a href="http://fritzing.org/projects/auduino-diy-arduino-synthesizer/">here</a>. </p>
<img src="http://turtlethink.com/?ak_action=api_record_view&id=1070&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://turtlethink.com/2010/03/auduino-diy-arduino-synthesizer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>From Hackerspace to FabLab: is DIY Culture and Personal Fabrication the future?</title>
		<link>http://turtlethink.com/2009/11/from-hackerspace-to-fablab-is-diy-culture-and-personal-fabrication-the-future/</link>
		<comments>http://turtlethink.com/2009/11/from-hackerspace-to-fablab-is-diy-culture-and-personal-fabrication-the-future/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 01:12:30 +0000</pubDate>
		<dc:creator>Mark Kizelshteyn</dc:creator>
				<category><![CDATA[FabLab]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[New Media]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Personal Fabrication]]></category>
		<category><![CDATA[RepRap]]></category>

		<guid isPermaLink="false">http://turtlethink.com/?p=916</guid>
		<description><![CDATA[“At one time a computer was a job description rather than a machine. Before electronic computing machines, computer referred to the teams of people who operated simple mechanical calculating machines to solve complex problems. These human computers were programmed by their written instructions. Likewise, typesetting was once a career for a trained typesetter, laying up [...]]]></description>
			<content:encoded><![CDATA[<p>“At one time a computer was a job description rather than a machine. Before electronic computing machines, <em>computer</em> referred to the teams of people who operated simple mechanical calculating machines to solve complex problems. These human computers were programmed by their written instructions. Likewise, typesetting was once a career for a trained typesetter, laying up lead type, rather than an expected menu choice in any word-processing program. It may well be that in the world of personal fabrication it is the fate of engineering to similarly become a shared skill rather than a specialized career,&#8221; writes MIT professor, Neil Gershenfeld. </p>
<p>A bold statement of this sort is easy to dismiss – technological fads are thrown at us regularly, where the-next-big-thing announcements are just as frequent as their dismissals. Nonetheless, Gershenfeld identifies several compelling parallels. As the story of personal fabrication unfolds, its resemblance to the personal computing revolution is remarkable. Computers were bulky, big and expensive – not to be seen in the home, but they found their way in and became the center of our lives. Many, along with Gershenfeld, are arguing this will happen with bulky, big and expensive manufacturing equipment. Yes, we are talking about a Star Trek Replicator thingy on our desks. </p>
<p><img src="http://turtlethink.com/wp-content/uploads/2009/11/hackerspace.jpg" alt="hackerspace" title="hackerspace" width="662" height="442" class="aligncenter size-full wp-image-924" /><br />
[Hackerspace. Image from Alex Welsh of <a href="http://online.wsj.com/article/SB125798004542744219.html#articleTabs%3Dslideshow%26project%3DSLIDESHOW08%26s%3DSB10001424052748704576204574529912395314736">Wall Street Journal</a>]</p>
<p>Let’s zoom out and position ourselves in the (re)new(ed) cultural trend of DIY (do-it-yourself). Justin Lahart in <a href="http://online.wsj.com/article/SB125798004542744219.html#articleTabs%3Darticle">&#8220;Tinkering Makes Comeback Amid Crisis&#8221;</a> gives an interesting overview of the reemerging DIY culture that has been the cornerstone of innovation. From the shift of garage tinkerers to successful entrepreneurs, there is something big happening &#8212; people are reclaiming their physical world and shaping it to fit their lives. Realizing that creativity is essential in ones success, many are finding this through the personalization of their world. </p>
<p>While Hackerspaces have recently been covered in the media, I want to focus on FabLabs which have been exponentially growing since 2005. I am discovering the incredible potential for FabLabs as I am starting to get my feet wet in a local lab.  I have been blow away by the personal creative empowerment, the larger social meaning of such a movement and the contagious momentum it has. </p>
<p><img src="http://turtlethink.com/wp-content/uploads/2009/11/4109431603_34a015eb78_b1.jpg" alt="4109431603_34a015eb78_b" title="4109431603_34a015eb78_b" width="800" height="600" class="aligncenter size-full wp-image-925" /><br />
[RepRap Workshop at FabLab. Image from XNDR, <a href="http://www.cabfablab.nl">CabFabLab</a>]</p>
<p>A few weeks ago, I finished Neil Gershenfeld&#8217;s book, Fab, which tells the detailed story of all fab-related things. Although it is from 2005 and much has changed, it is still an informative and worthwhile read. Gershenfeld argues how FabLabs and ultimately DIY culture are the future. </p>
<p>So, what is a FabLab?</p>
<p>A FabLab is an open workshop that contains a variety of modern prototyping machinery that can be used to create essentially anything. The FabLab program was devised by MIT professor Neil Gershenfeld. His course &#8220;How to create (almost) anything&#8221; was the impetus for FabLabs, which have now developed into a global network of (somewhat) standardized and largely open-source setups. From the South Bronx to Afghanistan to the Netherlands, Norway and India &#8212; Fablabs around the world are serving the needs and demands of local economies. While some lab users are dreaming up jewelry and art installations, others are creating food safety monitoring systems, wireless networks and RFID animal tags. </p>
<p>The movement is a disruptive technology that reclaims customization and pushes bulk production out the door. In Gershenfelds book, he brings up the concept of globalization being replaced by localization, whereby mass customization losses the &#8220;mass&#8221; piece. He argues that technology will start better reflecting our needs because it is going to be developed by and for us. We are heading toward a highly malleable physical world. </p>
<p>It is pretty incredible, but what does this all mean? </p>
<p>Gershenfeld states, &#8220;If you give people access to means to solve their own problems, it touches something very, very deep&#8230;somehow it goes back to nest-building, or mastering your own environment. There&#8217;s sort of this deep thing inside that most people don&#8217;t express that comes tumbling out when they get access to these tools.&#8221;  The access to FabLabs is drawing attention from artists, entrepreneurs and engineers alike, and is at the root of this rapidly growing revolution &#8212; one where manufacturing and DIY are empowering communities. I have seen this first hand. Similar to a child getting her hands on a Lego kit and exploring what she can build, people are being given a chance to expand their creative potential. </p>
<p>The funny thing is that this future trend is moving towards the way things used to be. People were inventing, building and tinkering since the dawn of man. If you needed a tool or something for your house, you built it. Or went to your friend and got advice on how to build or acquire such a thing. But industrialization hit society and mass production took over. We became consumers rather than producers. But, we have reached the other side of that hump. Production is coming back to the garage. Well not only the garage, but also peoples desks, offices and schools. Society is being re-equipped with the tools and communities are leveraging the potential of these powerful technologies.  </p>
<p>But, what is going to happen in just a few more years when the market continues to drive down the price and the ability of these machines continues to rapidly increase. (And off course what good is a technology blog with out mentioning Moore&#8217;s Law).</p>
<p>What do you think?  </p>
<p>If you are interested in this topic, I highly recommend <a href="http://bit.ly/1sOPfV">watching</a> Neil Gershenfeld&#8217;s Ted Talk. <a href="http://bit.ly/27ZCW7">This</a> is a great little video showing the diverse and global FabLab community. <a href="http://bit.ly/27ZCW7">Check</a> it out.  Lastly, The <a href="http://www.flickr.com/photos/cabfablab/">CabFabLab</a> has an excellent photo stream of all FabLab related projects. These images offer a really good insight at what is possible. Check it out <a href="http://www.flickr.com/photos/cabfablab/">here</a>. </p>
<img src="http://turtlethink.com/?ak_action=api_record_view&id=916&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://turtlethink.com/2009/11/from-hackerspace-to-fablab-is-diy-culture-and-personal-fabrication-the-future/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
