<?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>NeoEGM.com &#187; Hardware</title>
	<atom:link href="http://www.neoegm.com/tech/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neoegm.com</link>
	<description>Knowledge is inside</description>
	<lastBuildDate>Mon, 08 Jul 2024 05:38:01 +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>Keil uVision Plugin: Matrix Keyboard</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/#comments</comments>
		<pubDate>Mon, 03 May 2010 04:53:36 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[8051]]></category>
		<category><![CDATA[AGSI]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[Matrix Keyboard]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[uVision]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1692</guid>
		<description><![CDATA[Update (2010-05-19): schematic updated to reflect real circuit. Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one. Internally, it responds to the following schematic: It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application: Usage First of [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" rel="bookmark" title="How to install a Keil uVision peripheral plugin">How to install a Keil uVision peripheral plugin </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/guitar-trainer/" rel="bookmark" title="Guitar Trainer">Guitar Trainer </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><strong>Update (2010-05-19):</strong> schematic updated to reflect real circuit.</p>
<p>Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard.png" alt="" title="MatrixKeyboard_Keyboard" width="184" height="255" class="aligncenter size-full wp-image-1694" /></p>
<p><span id="more-1692"></span></p>
<p>Internally, it responds to the following schematic:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic.png" rel="lightbox[1692]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic-180x300.png" alt="" title="MatrixKeyboard_Schematic" width="180" height="300" class="aligncenter size-medium wp-image-1693" /></a></p>
<p>It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application:</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></p>
<h3>Usage</h3>
<p>First of all, you must install it on the Keil uVision and configure your project in order to use it while simulating. The plugin name, for the configuration, is <strong>MatrixKeyboard</strong>. You can follow <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/">this step by step guide</a>.</p>
<p>Then, you must copy the <strong>MatrixKeyboard.ini</strong> file to your project and modify it to satisfy your needs. For example, given the following pin definitions:</p>
<pre class="brush: cpp; title: ; notranslate">
sbit Keyboard_Scan_0 = P1^1;
sbit Keyboard_Scan_1 = P1^2;
sbit Keyboard_Scan_2 = P1^3;
sbit Keyboard_Scan_3 = P1^4;

sbit Keyboard_Return_0 = P1^5;
sbit Keyboard_Return_1 = P1^6;
sbit Keyboard_Return_2 = P1^7;
</pre>
<p>You could configure the INI file like this:</p>
<pre class="brush: plain; title: ; notranslate">
[Settings]

; All port addresses in hexadecimal
; Bits: 0-7

Scan0_Port_Address = 90
Scan0_Port_Bit = 1

Scan1_Port_Address = 90
Scan1_Port_Bit = 2

Scan2_Port_Address = 90
Scan2_Port_Bit = 3

Scan3_Port_Address = 90
Scan3_Port_Bit = 4

Return0_Port_Address = 90
Return0_Port_Bit = 5

Return1_Port_Address = 90
Return1_Port_Bit = 6

Return2_Port_Address = 90
Return2_Port_Bit = 7
</pre>
<p>If you don&#8217;t remember the port addresses, you can always check the header file corresponding to you microcontroller and look for a line like this:</p>
<pre class="brush: cpp; title: ; notranslate">
sfr P1 = 0x90;
</pre>
<p>Well, that&#8217;s all. You can now run your project in simulation mode and open the plugin via Peripherals->Matrix Keyboard.</p>
<p><a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">MatrixKeyboard is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p>Finally, the downloads:</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1.zip">MatrixKeyboard Plugin v1.1</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1_Source.zip">Download v1.1 Source Code</a></p>
</div>
<p>The source code proyect is done in Visual Studio 2008, but it can be easily adapted for other versions.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="guitar fret notes">guitar fret notes</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="diapasón guitarra">diapasón guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="diapasón de la guitarra">diapasón de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="matrix keyboard">matrix keyboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="notes on the fretboard">notes on the fretboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="guitar notes on the fretboard">guitar notes on the fretboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="KEIL UVISION">KEIL UVISION</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="teclado matricial">teclado matricial</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="the notes on a guitar">the notes on a guitar</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="windows 95 games">windows 95 games</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" rel="bookmark" title="How to install a Keil uVision peripheral plugin">How to install a Keil uVision peripheral plugin </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/guitar-trainer/" rel="bookmark" title="Guitar Trainer">Guitar Trainer </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install a Keil uVision peripheral plugin</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:55:40 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Step by Step]]></category>
		<category><![CDATA[uVision]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1704</guid>
		<description><![CDATA[The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps. 1- First, copy the files corresponding to the C51 directory of the Keil&#8217;s installation. Assuming you have installed the application in C:\Keil, then the destination directory would be C:\Keil\C51. Commonly, you just copy [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" rel="bookmark" title="Keil uVision Plugin: Matrix Keyboard">Keil uVision Plugin: Matrix Keyboard </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></a></p>
<p>The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps.</p>
<p><span id="more-1704"></span></p>
<p>1- First, copy the files corresponding to the <strong>C51</strong> directory of the Keil&#8217;s installation.</p>
<p>Assuming you have installed the application in C:\Keil, then the destination directory would be <strong>C:\Keil\C51</strong>.</p>
<p>Commonly, you just copy there the plugin DLL.</p>
<p>2- Copy the additional files to be used to the <strong>UV3</strong> or <strong>UV4</strong> directory, depending on whether you are using uVision 3 o uVision 4.</p>
<p>These use to be additional files used by the plugin. This should have been indicated by the plugin developer for each particular plugin.</p>
<p>3- Copy the needed files to each project directory. These are commonly project specific configuration files, like the ones specifying the used pins.</p>
<p>4- Configure the project in order to use the plugin.</p>
<p>In uVision, go to Project->Options for Target, and then to the Debug tab.</p>
<p>There, we edit the field &#8220;Parameter&#8221; which is next to &#8220;Dialog DLL&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug.png" rel="lightbox[1704]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug-300x225.png" alt="" title="Keil_Config_Debug" width="300" height="225" class="aligncenter size-medium wp-image-1707" /></a></p>
<p>We add the following to the back of the text string:</p>
<p>-d<strong>PluginName</strong></p>
<p>For example, in the case we wanted to use the <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/">Matrix Keyboard plugin</a>, we would write, just as in the image:</p>
<p>-d<strong>MatrixKeyboard</strong></p>
<p>That&#8217;s all, we&#8217;re ready to start the debugging mode and run our project.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil plugin">keil plugin</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision 4">keil uvision 4</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision3">keil uvision3</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="how to install KEIL uvision3">how to install KEIL uvision3</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil peripherals">keil peripherals</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil peripheral">keil peripheral</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="peripheral plug in">peripheral plug in</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="How to install keil uvision 4">How to install keil uvision 4</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="como instalar el keil">como instalar el keil</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="Keil peripheral dll">Keil peripheral dll</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" rel="bookmark" title="Keil uVision Plugin: Matrix Keyboard">Keil uVision Plugin: Matrix Keyboard </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What happens when the CPU heatsink is removed?</title>
		<link>http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/</link>
		<comments>http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[Burn]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Heatsink]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Smoke]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=838</guid>
		<description><![CDATA[This is a very good video I&#8217;ve seen some time ago. I think Fepe sent it to me. It&#8217;s from Tom&#8217;s Hardware Guide. It shows what happens to different CPUs when you remove their heatsink. And this one is a sequel with newer processors. Incoming search terms for the article: como se quita el procesador [&#8230;]<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p>This is a very good video I&#8217;ve seen some time ago. I think <a href="http://www.fepe55.com.ar/blog/">Fepe</a> sent it to me. It&#8217;s from <a href="http://www.tomshardware.com/us/">Tom&#8217;s Hardware Guide</a>.</p>
<p>It shows what happens to different CPUs when you remove their heatsink.</p>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/zgwu6X-QZ7U&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/zgwu6X-QZ7U&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<p><span id="more-838"></span></p>
<p>And this one is a sequel with newer processors.</p>
<p><object width="500" height="315"><param name="movie" value="http://www.youtube.com/v/cAqlA9EJ4ME&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cAqlA9EJ4ME&#038;hl=en&#038;fs=1&#038;rel=0&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="315"></embed></object><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="como se quita el procesador">como se quita el procesador</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="what happens when the heatsink is removed">what happens when the heatsink is removed</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="como se quita el disipador">como se quita el disipador</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="what happens when the heat sink is removed">what happens when the heat sink is removed</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="What happens when a CPU heatsink is removed">What happens when a CPU heatsink is removed</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="como se quita un disipador">como se quita un disipador</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="como se quita un procesador">como se quita un procesador</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="what happens when a heat sink is removed">what happens when a heat sink is removed</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="what happens when the heatsink is removed?">what happens when the heatsink is removed?</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/" title="what happens if the heat sink is removed">what happens if the heat sink is removed</a></li>
</ul>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/what-happens-when-the-cpu-heatsink-is-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Very Creative Packaging (PowerCooler Power Source)</title>
		<link>http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/</link>
		<comments>http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 21:00:26 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Power]]></category>
		<category><![CDATA[Power Source]]></category>
		<category><![CDATA[PowerCooler]]></category>
		<category><![CDATA[Toolbox]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=588</guid>
		<description><![CDATA[Some time ago, I bought a power source which came with a very interesting pacakaging: it seemed to be a toolbox! Later, when I read some of the information which came inside, I realized they wanted you to use it as a toolbox&#8230; I leave you some pictures&#8230; Incoming search terms for the article: PowerCooler [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/writings/short-stories/el-poder-interior/" rel="bookmark" title="The Inner Power">The Inner Power </a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/searching/which-search-engine-would-you-choose-if-you-just-saw-their-results-google-yahoo-or-bing/" rel="bookmark" title="Which search engine would you choose if you just saw their results? Google, Yahoo or Bing?">Which search engine would you choose if you just saw their results? Google, Yahoo or Bing? </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/wake-on-lan/" rel="bookmark" title="Wake On LAN (Remotely power on a computer)">Wake On LAN (Remotely power on a computer) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Some time ago, I bought a power source which came with a very interesting pacakaging: <strong>it seemed to be a toolbox</strong>!</p>
<p>Later, when I read some of the information which came inside, I realized <strong>they wanted you to use it as a toolbox</strong>&#8230;</p>
<p>I leave you some pictures&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_1.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_1-300x225.jpg" alt="PowerCooler_Package_1" title="PowerCooler_Package_1" width="300" height="225" class="aligncenter size-medium wp-image-590" /></a></p>
<p><span id="more-588"></span></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_2.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_2-300x225.jpg" alt="PowerCooler_Package_2" title="PowerCooler_Package_2" width="300" height="225" class="aligncenter size-medium wp-image-591" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_3.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_3-300x225.jpg" alt="PowerCooler_Package_3" title="PowerCooler_Package_3" width="300" height="225" class="aligncenter size-medium wp-image-592" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_4.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_4-300x225.jpg" alt="PowerCooler_Package_4" title="PowerCooler_Package_4" width="300" height="225" class="aligncenter size-medium wp-image-593" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_5.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_5-300x225.jpg" alt="PowerCooler_Package_5" title="PowerCooler_Package_5" width="300" height="225" class="aligncenter size-medium wp-image-594" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_6.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_6-225x300.jpg" alt="PowerCooler_Package_6" title="PowerCooler_Package_6" width="225" height="300" class="aligncenter size-medium wp-image-595" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_7.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_7-225x300.jpg" alt="PowerCooler_Package_7" title="PowerCooler_Package_7" width="225" height="300" class="aligncenter size-medium wp-image-596" /></a></p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_8.jpg" rel="lightbox[588]"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/PowerCooler_Package_8-300x225.jpg" alt="PowerCooler_Package_8" title="PowerCooler_Package_8" width="300" height="225" class="aligncenter size-medium wp-image-589" /></a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="PowerCooler">PowerCooler</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="power cooler">power cooler</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="packaging herramientas">packaging herramientas</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="creative packaging">creative packaging</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="como diseñar un packaging">como diseñar un packaging</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="FUENTE POWERCOOLER">FUENTE POWERCOOLER</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="como hacer un packaging">como hacer un packaging</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="fuentes power cooler#">fuentes power cooler#</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="memoria tecnica packaging">memoria tecnica packaging</a></li>
<li><a href="http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/" title="packaging de caja de herramientas">packaging de caja de herramientas</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/writings/short-stories/el-poder-interior/" rel="bookmark" title="The Inner Power">The Inner Power </a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/searching/which-search-engine-would-you-choose-if-you-just-saw-their-results-google-yahoo-or-bing/" rel="bookmark" title="Which search engine would you choose if you just saw their results? Google, Yahoo or Bing?">Which search engine would you choose if you just saw their results? Google, Yahoo or Bing? </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/wake-on-lan/" rel="bookmark" title="Wake On LAN (Remotely power on a computer)">Wake On LAN (Remotely power on a computer) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/blog/curiosities/marketing/a-very-creative-packaging-powercooler-power-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
