<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kaas Log Book &#187; attiny13</title>
	<atom:link href="http://kaasxxx.wordpress.com/category/attiny13/feed/" rel="self" type="application/rss+xml" />
	<link>http://kaasxxx.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 12 Aug 2009 01:42:57 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='kaasxxx.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1737a1d2a158b81bcaf6ce02ee484e5a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Kaas Log Book &#187; attiny13</title>
		<link>http://kaasxxx.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kaasxxx.wordpress.com/osd.xml" title="Kaas Log Book" />
		<item>
		<title>Working with AVR-gcc, tiny13, STK500 on a Mac.</title>
		<link>http://kaasxxx.wordpress.com/2008/02/11/working-with-avr-gcc-tiny13-stk500-on-a-mac/</link>
		<comments>http://kaasxxx.wordpress.com/2008/02/11/working-with-avr-gcc-tiny13-stk500-on-a-mac/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 18:33:05 +0000</pubDate>
		<dc:creator>kaasxxx</dc:creator>
				<category><![CDATA[AVR]]></category>
		<category><![CDATA[ERG]]></category>
		<category><![CDATA[attiny13]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[electronic]]></category>
		<category><![CDATA[tiny13]]></category>

		<guid isPermaLink="false">http://kaasxxx.wordpress.com/?p=64</guid>
		<description><![CDATA[First, install the packages (avr-gcc, binutils etc) for compiling/linking AVR programs in Mac OS X. I followed the instruction  here:  Programming an AVR microcontroller
Afterward, it is time to start my first led program in C.
I decide to use PB0 as led output, I connect the PB0 to Led0 on STk500 to  start [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=64&subd=kaasxxx&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>First, install the packages (avr-gcc, binutils etc) for compiling/linking AVR programs in Mac OS X. I followed the instruction  here:  <a href="http://chris.dwan.org/robot/" target="_blank">Programming an AVR microcontroller</a></p>
<p>Afterward, it is time to start my first led program in C.</p>
<p>I decide to use PB0 as led output, I connect the PB0 to Led0 on STk500 to  start this testing program quickly.</p>
<pre>
#include &lt;avr/io.h&gt;
#define F_CPU 120000
#include &lt;util/delay.h&gt;
int main (void)
{

// set PB.0 as output pin

DDRB  = 0x01;

// set PB.0 to output high

PORTB = 0x01;

while (1) {

PORTB ^= 0x01;

_delay_loop_2(65535);

}

}</pre>
<p>Compile the program:</p>
<blockquote><p><font color="#333300">avr-gcc led_blink.c -o led.elf -mmcu=attiny13</font></p></blockquote>
<p>Convert the elf format to hex format for flashing to the Tiny13:</p>
<blockquote><p><font color="#333300">avr-objcopy -O ihex led.elf led.rom</font></p></blockquote>
<p>Prepare avrdude for Mac to flash program and find out the serial port device name on your Mac OS X. I am using usb2serial adapter, the serial port device is /dev/cu.usbserial and connected to stk500 RS232 CTRL port with the serial cable provided in stk500 kit.</p>
<blockquote><p><font color="#333300">avrdude -p t13 -c stk500v2 -P /dev/cu.usbserial -e -U flash:w:led.rom</font></p></blockquote>
<p>If it programs successfully, you will see the LED0 is flashing on STk500 board.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kaasxxx.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kaasxxx.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kaasxxx.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kaasxxx.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kaasxxx.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kaasxxx.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kaasxxx.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kaasxxx.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kaasxxx.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kaasxxx.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kaasxxx.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kaasxxx.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=64&subd=kaasxxx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kaasxxx.wordpress.com/2008/02/11/working-with-avr-gcc-tiny13-stk500-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/decc3dfdd69645662068cbf63999bb67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">K</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming AVR ATtiny13 with STK500</title>
		<link>http://kaasxxx.wordpress.com/2008/02/11/programming-avr-attiny13-with-stk500/</link>
		<comments>http://kaasxxx.wordpress.com/2008/02/11/programming-avr-attiny13-with-stk500/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 16:01:55 +0000</pubDate>
		<dc:creator>kaasxxx</dc:creator>
				<category><![CDATA[AVR]]></category>
		<category><![CDATA[ERG]]></category>
		<category><![CDATA[attiny13]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[electronic]]></category>
		<category><![CDATA[tiny13]]></category>

		<guid isPermaLink="false">http://kaasxxx.wordpress.com/?p=55</guid>
		<description><![CDATA[The STK500 comes with a manual with all the instructions for programming the AVR processors. The only problem is that I want to use it to program the AVR tiny13 which is not yet ready when the time the manual was printed. After searching on the web, I found out that the instructions are ready [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=55&subd=kaasxxx&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The STK500 comes with a manual with all the instructions for programming the AVR processors. The only problem is that I want to use it to program the AVR tiny13 which is not yet ready when the time the manual was printed. After searching on the web, I found out that the instructions are ready on the  help page of the latest AVR Studio for Windows. Finally, I can program my AVR tiny13 with STK500. I am using my Mac to program the AVR tiny13, so I better write it down here. Hope it may help you also.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_1.jpg" alt="stk500_tiny13_1.jpg" /></p>
<p>Step 1 &#8211; Place the ATtiny13 (DIP) to the SCKT3400D1.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_21.jpg" alt="stk500_tiny13_21.jpg" /></p>
<p>Step 2 &#8211; Connect the ISP6PIN socket to SROG1 with the 6-pin cable provided.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_31.jpg" alt="stk500_tiny13_31.jpg" /></p>
<p>Step 3 &#8211; Connect the PORTE/RST to PORTB/PB5 and also PORTE/XT1 to PORTB/PB3. I used the 2 pin cables provided, it is a bit lossy.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kaasxxx.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kaasxxx.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kaasxxx.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kaasxxx.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kaasxxx.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kaasxxx.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kaasxxx.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kaasxxx.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kaasxxx.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kaasxxx.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kaasxxx.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kaasxxx.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=55&subd=kaasxxx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kaasxxx.wordpress.com/2008/02/11/programming-avr-attiny13-with-stk500/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/decc3dfdd69645662068cbf63999bb67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">K</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_1.jpg" medium="image">
			<media:title type="html">stk500_tiny13_1.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_21.jpg" medium="image">
			<media:title type="html">stk500_tiny13_21.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_tiny13_31.jpg" medium="image">
			<media:title type="html">stk500_tiny13_31.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Atmel STK500 + AVR Dragon Promotion.</title>
		<link>http://kaasxxx.wordpress.com/2008/02/10/atmel-stk500-avr-dragon-promotion/</link>
		<comments>http://kaasxxx.wordpress.com/2008/02/10/atmel-stk500-avr-dragon-promotion/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 13:53:18 +0000</pubDate>
		<dc:creator>kaasxxx</dc:creator>
				<category><![CDATA[AVR]]></category>
		<category><![CDATA[ERG]]></category>
		<category><![CDATA[attiny13]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[electronic]]></category>
		<category><![CDATA[tiny13]]></category>

		<guid isPermaLink="false">http://kaasxxx.wordpress.com/?p=58</guid>
		<description><![CDATA[I bought the STk500 at once when I saw the promotion from Atmel in the year 2007. It was only $49, only the cost of AVR dragon but together with the STK500! It is really a good beginner kit, I want to start with Atmel AVR and particularly the ATtiny processor series, the STK500 is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=58&subd=kaasxxx&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I bought the STk500 at once when I saw the promotion from Atmel in the year 2007. It was only $49, only the cost of AVR dragon but together with the STK500! It is really a good beginner kit, I want to start with Atmel AVR and particularly the ATtiny processor series, the STK500 is very helpful indeed. It comes with one Atmel 8bit processor(ATMEGA8515L), serial cable, ISP cable (6-pin), and few 2-pin cables for fast prototyping. It can be used to program wide range of the Atmel 8-bit processors, together with Leds, switches for testing your programs on the STK500 board. The only drawback is that you have to use a serial port for programming which is mostly not present in modern computer or notebook, but a usb2serial adapter may help to resolve this problem even on my Mac. The AVR dragon is cool, but for a lazy guy like me that don&#8217;t want to construct a socket and also involving many soldering works, I rather stick on the STK500 for my home projects.</p>
<p>STk500/AVR dragon unbox photos</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_1.jpg" alt="stk500_1.jpg" /></p>
<p>#1 &#8211; Arrived.</p>
<p>I ordered from DIGI-key, and this combo kit is marked as out of stock at that time. I back-order the kit and it came faster than I expected.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_2.jpg" alt="stk500_2.jpg" /></p>
<p>#2 &#8211; STk500 + AVR Dragon</p>
<p><img src="http://kaasxxx.files.wordpress.com/2008/02/stk500_3.jpg" alt="stk500_3.jpg" /></p>
<p>#3 &#8211; Close look of AVR Dragon</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kaasxxx.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kaasxxx.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kaasxxx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kaasxxx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kaasxxx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kaasxxx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kaasxxx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kaasxxx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kaasxxx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kaasxxx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kaasxxx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kaasxxx.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=58&subd=kaasxxx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kaasxxx.wordpress.com/2008/02/10/atmel-stk500-avr-dragon-promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/decc3dfdd69645662068cbf63999bb67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">K</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_1.jpg" medium="image">
			<media:title type="html">stk500_1.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_2.jpg" medium="image">
			<media:title type="html">stk500_2.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2008/02/stk500_3.jpg" medium="image">
			<media:title type="html">stk500_3.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>LED Flower Vase</title>
		<link>http://kaasxxx.wordpress.com/2007/12/19/flower-vase-with-led-matrix/</link>
		<comments>http://kaasxxx.wordpress.com/2007/12/19/flower-vase-with-led-matrix/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 18:08:40 +0000</pubDate>
		<dc:creator>kaasxxx</dc:creator>
				<category><![CDATA[AVR]]></category>
		<category><![CDATA[ERG]]></category>
		<category><![CDATA[attiny13]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[electronic]]></category>
		<category><![CDATA[led]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[tiny13]]></category>

		<guid isPermaLink="false">http://kaasxxx.wordpress.com/2007/12/19/flower-vase-with-led-matrix/</guid>
		<description><![CDATA[I want to make something simple, small and elegant for my lover&#8217;s birthday. Finally I come up with using 5&#215;7 dot matrix led to make a flower vase, it can be used to display some text messages for her:)

Here are the components:
1. 5&#215;7 dot matrix led
2. Atmel AVR tiny13
3. 2 x 74HC595 shift register with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=17&subd=kaasxxx&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I want to make something simple, small and elegant for my lover&#8217;s birthday. Finally I come up with using 5&#215;7 dot matrix led to make a flower vase, it can be used to display some text messages for her:)</p>
<p><img src="http://kaasxxx.files.wordpress.com/2007/12/flower03.jpg" alt="flower03.jpg" /></p>
<p>Here are the components:</p>
<p>1. 5&#215;7 dot matrix led<br />
2. Atmel AVR tiny13<br />
3. 2 x 74HC595 shift register with Latch<br />
4. 2 x wooden prototype boards<br />
5. 1 x coin battery holder<br />
6. 1 x CR2032 coin battery (3V)<br />
7. 3 x paper flowers<br />
8. semi-transparent brown mud (from Franc Franc)<br />
9.  Switch for turning  ON/OFF</p>
<p>I want to make things small, so I put the 5&#215;7 dot matrix led horizontally and used the 5&#215;4 dot matrix font, such that it can nearly display 2 characters at a time. For the MCU part,  AVR Atmel tiny13 is a very small MCU, it is quite  suitable for this kind of small application. The only problem is that it has limited IO pins, I have to use 2 x 74HC595 chips to extend the output pins, so I can driver 5&#215;7 dot matrix led with only 3 IO pins, i.e. Clock Data, Latch.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2007/12/flower02.jpg" alt="flower02.jpg" width="478" height="302" /></p>
<p>Sorry for not posting any circuit digram, as I make it in hurry. After I spend a lots of time soldering the lines linking between the leds and the shift registers, here is the circuit board:</p>
<p><img src="http://kaasxxx.files.wordpress.com/2007/12/flower01.jpg" alt="flower01.jpg" width="484" height="242" /></p>
<p>Then, I program the AVR Tiny13 with the STK500, the socket on the prototype board is a DIP socket, so I program the Tiny13 on STK500 and then put it back on the board to test. After several hours, the software is done.</p>
<p>Let&#8217;s put all the things together! I really love the effect when putting the led matrix in the transparent mud, the brown color is a good match.</p>
<p><img src="http://kaasxxx.files.wordpress.com/2007/12/flower04.jpg" alt="flower04.jpg" /></p>
<p>Video demo:</p>
<p><span style="text-align:center; display: block;"><a href="http://kaasxxx.wordpress.com/2007/12/19/flower-vase-with-led-matrix/"><img src="http://img.youtube.com/vi/rUu0JNlk0l8/2.jpg" alt="" /></a></span></p>
<p>Lastly, don&#8217;t forget the packing!</p>
<p><img src="http://kaasxxx.files.wordpress.com/2007/12/flower05.jpg" alt="flower05.jpg" /></p>
<p>Hope you all may find useful.</p>
<p>Please also check out the notes by bitartist, including schematic &amp; source codes:</p>
<p><a href="http://www.bitartist.org/2009/02/led-flower-vase-supplementary-note.html">http://www.bitartist.org/2009/02/led-flower-vase-supplementary-note.html</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kaasxxx.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kaasxxx.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kaasxxx.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kaasxxx.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kaasxxx.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kaasxxx.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kaasxxx.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kaasxxx.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kaasxxx.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kaasxxx.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kaasxxx.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kaasxxx.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kaasxxx.wordpress.com&blog=2293977&post=17&subd=kaasxxx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kaasxxx.wordpress.com/2007/12/19/flower-vase-with-led-matrix/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/decc3dfdd69645662068cbf63999bb67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">K</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2007/12/flower03.jpg" medium="image">
			<media:title type="html">flower03.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2007/12/flower02.jpg" medium="image">
			<media:title type="html">flower02.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2007/12/flower01.jpg" medium="image">
			<media:title type="html">flower01.jpg</media:title>
		</media:content>

		<media:content url="http://kaasxxx.files.wordpress.com/2007/12/flower04.jpg" medium="image">
			<media:title type="html">flower04.jpg</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/rUu0JNlk0l8/2.jpg" medium="image" />

		<media:content url="http://kaasxxx.files.wordpress.com/2007/12/flower05.jpg" medium="image">
			<media:title type="html">flower05.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>