<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>KwartzLab Makerspace &#187; lolshield arduino saltnpepareuniontour</title>
	<atom:link href="http://www.kwartzlab.ca/tag/lolshield_arduino_saltnpepareuniontour/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kwartzlab.ca</link>
	<description>Home of Kwartzlab Makerspace in Kitchener/Waterloo, Ontario</description>
	<lastBuildDate>Fri, 24 May 2013 16:54:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<!-- podcast_generator="Blubrry PowerPress/4.0.7" -->
	<itunes:summary>Regular discussions with hackers, makers and artists at the Kwartzlab Makerspace. We talk about what projects people are working on, what events are coming up and how you can get involved.</itunes:summary>
	<itunes:author>kwartzlab</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.kwartzlab.ca/wp-content/uploads/powerpress/light_box_logo.jpg" />
	<itunes:owner>
		<itunes:name>kwartzlab</itunes:name>
		<itunes:email>podcast@kwartzlab.ca</itunes:email>
	</itunes:owner>
	<managingEditor>podcast@kwartzlab.ca (kwartzlab)</managingEditor>
	<itunes:subtitle>A hackerspace radio show</itunes:subtitle>
	<itunes:keywords>kwartzlab, hackerspace, makerspace, diy, hardware, software, maker, hacker, artist, roundtable</itunes:keywords>
	<image>
		<title>KwartzLab Makerspace &#187; lolshield arduino saltnpepareuniontour</title>
		<url>http://www.kwartzlab.ca/wp-content/uploads/powerpress/light_box_logo.jpg</url>
		<link>http://www.kwartzlab.ca</link>
	</image>
	<itunes:category text="Technology" />
	<itunes:category text="Arts" />
	<itunes:category text="Games &amp; Hobbies">
		<itunes:category text="Hobbies" />
	</itunes:category>
		<rawvoice:location>Kitchener, ON</rawvoice:location>
		<item>
		<title>Project: Make LoLShield Awesomer</title>
		<link>http://www.kwartzlab.ca/2010/08/project-make-lolshield-awesome/</link>
		<comments>http://www.kwartzlab.ca/2010/08/project-make-lolshield-awesome/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 21:05:41 +0000</pubDate>
		<dc:creator>amackie</dc:creator>
				<category><![CDATA[Member Blogs]]></category>
		<category><![CDATA[lolshield arduino saltnpepareuniontour]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I've been working on making the <a href="http://jimmieprodgers.com/kits/lolshield/">LoLShield </a>work as a visual attraction, grab attention and showcase us to the world.  The LoLShield is a 14x9 LCD display created by <a href="http://jimmieprodgers.com"><JimmyPRogers></a> which is capable of making the Arduino do impressive things for a low cost &#38; complexity.  Unfortunately, my designs are grander and need more pixels.</p>

<p>I think I've found a way to do that with a single LoLShield, and it's embarrassingly simple to do.  My goal is to display an image on the LoLShield of an arbitrary size, without compromising quality or readability.</p>

[flickr]4915230394]</p>

<p>The display shows only a small piece of the image at a time, but moves the image around, to let the viewer mentally assemble the image.</p>

<p>There are 2 parts to the code - a Processing app which encodes the image for the Arduino, and the Arduino app itself which renders the image on the LoLShield.  The image is currently hard-coded, but a future version will allow the image to be loaded over a serial port.</p>

<p>For the following files, remove the "_.txt" extension to use the files with Arduino &#38; Processing.</p>

<p>Arduino code:
https://kwartzlab.ca/sites/default/files/LOL_Image_Kwartzlab.pde_.txt</p>

<p>Processing code:
https://kwartzlab.ca/sites/default/files/ImageBitmapperForLOLShield_Kwartzlab.pde_.txt</p>

<p>Logo:
<img src="https://kwartzlab.ca/sites/default/files/Kwartzlab-Tinylogo.png" alt="Kwartzlab Logo" /> <!-- Images -->
Things I've learned:
- It took about 10 hours to write what was ultimately about 50 lines of code. Ugh.  Welcome to software development.
- I can`t just assume there'll be a steady stream of data from the computer when sending the image.  I need to rethink how I'll read the image in, which'll be a future update. 
- Running out of memory is a pain in the butt, especially when the space available is so small - I can't even use 350 bytes in standard memory space, or the program will act totally unpredictably.</p>

<p>To do:
- Be able to send image run-length data across the serial line, and dynamically.
- Optimize the device code.  Right now rendering the top-left is much quicker than the bottom-right, on the order of milliseconds (which is a lot)
- Implement grayscale.  I'm thinking of adding 1/3 white, 2/3 white for a total of 4 states.  I'll have to identify each run-length, as I can't assume it to be any other colour.  To get these effects, I'll have to flicker the LEDs the appropriate level.</p>
]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been working on making the <a href="http://jimmieprodgers.com/kits/lolshield/">LoLShield </a>work as a visual attraction, grab attention and showcase us to the world.  The LoLShield is a 14&#215;9 LCD display created by <a href="http://jimmieprodgers.com"><JimmyPRogers></a> which is capable of making the Arduino do impressive things for a low cost &amp; complexity.  Unfortunately, my designs are grander and need more pixels.</p>
<p>I think I&#8217;ve found a way to do that with a single LoLShield, and it&#8217;s embarrassingly simple to do.  My goal is to display an image on the LoLShield of an arbitrary size, without compromising quality or readability.</p>
<p><p><a href="" title=""><img src="http://farm.static.flickr.com//_.jpg" alt="" title="" class="flickr-photo-img" /></a></p>4915230394]</p>
<p>The display shows only a small piece of the image at a time, but moves the image around, to let the viewer mentally assemble the image.</p>
<p>There are 2 parts to the code &#8211; a Processing app which encodes the image for the Arduino, and the Arduino app itself which renders the image on the LoLShield.  The image is currently hard-coded, but a future version will allow the image to be loaded over a serial port.</p>
<p>For the following files, remove the &#8220;_.txt&#8221; extension to use the files with Arduino &amp; Processing.</p>
<p>Arduino code:</p>
<p>https://kwartzlab.ca/wp-content/uploads/LOL_Image_Kwartzlab.pde_.txt</p>
<p>Processing code:</p>
<p>https://kwartzlab.ca/wp-content/uploads/ImageBitmapperForLOLShield_Kwartzlab.pde_.txt</p>
<p>Logo:<br />
<img src="https://kwartzlab.ca/wp-content/uploads/Kwartzlab-Tinylogo.png" alt="Kwartzlab Logo" /> <!-- Images --><br />
Things I&#8217;ve learned:<br />
- It took about 10 hours to write what was ultimately about 50 lines of code. Ugh.  Welcome to software development.<br />
- I can`t just assume there&#8217;ll be a steady stream of data from the computer when sending the image.  I need to rethink how I&#8217;ll read the image in, which&#8217;ll be a future update.<br />
- Running out of memory is a pain in the butt, especially when the space available is so small &#8211; I can&#8217;t even use 350 bytes in standard memory space, or the program will act totally unpredictably.</p>
<p>To do:<br />
- Be able to send image run-length data across the serial line, and dynamically.<br />
- Optimize the device code.  Right now rendering the top-left is much quicker than the bottom-right, on the order of milliseconds (which is a lot)<br />
- Implement grayscale.  I&#8217;m thinking of adding 1/3 white, 2/3 white for a total of 4 states.  I&#8217;ll have to identify each run-length, as I can&#8217;t assume it to be any other colour.  To get these effects, I&#8217;ll have to flicker the LEDs the appropriate level.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kwartzlab.ca/2010/08/project-make-lolshield-awesome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
