<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace V5 Site Server v5.13.159 (http://www.squarespace.com) on Sun, 26 May 2013 07:11:18 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>Projects</title><link>http://www.highonsolder.com/blog/</link><description></description><lastBuildDate>Mon, 15 Apr 2013 22:22:34 +0000</lastBuildDate><copyright></copyright><language>en-US</language><generator>Squarespace V5 Site Server v5.13.159 (http://www.squarespace.com)</generator><item><title>FreeNAS Server</title><category>Hardware</category><dc:creator>Joe</dc:creator><pubDate>Sat, 22 Dec 2012 16:45:27 +0000</pubDate><link>http://www.highonsolder.com/blog/2012/12/22/freenas-server.html</link><guid isPermaLink="false">290457:2964484:32085554</guid><description><![CDATA[<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FServer_Back.jpg%3F__SQUARESPACE_CACHEVERSION%3D1356195071115',1200,645);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-21340339-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1356195073025" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FServer_Front.jpg%3F__SQUARESPACE_CACHEVERSION%3D1356195094588',1200,859);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-21340340-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1356195095735" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FServer_Inside.jpg%3F__SQUARESPACE_CACHEVERSION%3D1356195118966',900,1200);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-21340341-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1356195120232" alt="" /></a></span></span>After two hard drives in my Home Theater PC failed this summer, almost resulting in some significant data loss, I decided to move toward a better local backup solution. My previous backup strategy involved syncing hard drives on my HTPC. Although this was a simple and effective solution, it wasn't the most efficient use of my hard drive space and it doesn't provide much redundancy. After looking at my options I decided that a <a href="http://www.freenas.org/">FreeNAS</a> Server was the way to go.</p>
<p><strong>Parts List</strong></p>
<ul>
<li>Case -&nbsp;<a href="http://www.fractal-design.com/?view=product&amp;prod=58">Fractal Design Define Mini</a></li>
<li>Power Supply -&nbsp;<a href="http://store.antec.com/Product/power_supply-earthwatts/ea-380d-green/0-761345-27384-8.aspx">Antec Earthwatts 380W</a></li>
<li>Motherboard -&nbsp;<a href="http://www.asrock.com/mb/Intel/B75%20Pro3-M/">ASRock B75 Pro3-M</a></li>
<li>Processor -&nbsp;<a href="http://ark.intel.com/products/53484/Intel-Pentium-Processor-G630T-3M-Cache-2_30-GHz">Intel Pentium G630T</a>&nbsp;(2.3GHz, Dual-Core, 35W)</li>
<li>RAM - 8GB GSkill DDR3</li>
<li>Hard Drives - (4) 3TB&nbsp;<a href="http://www.wdc.com/en/products/products.aspx?id=810">Western Digital Red</a></li>
<li>OS Flash Drive - 4GB <a href="http://www.sandisk.com/products/usb/drives/cruzer-fit/">Sandisk Cruzer Fit</a></li>
</ul>
<p><strong>Hardware</strong></p>
<p>For my server build I not only wanted to keep the cost down, I also wanted it to be as quiet and power efficient as possible. I chose the case because of its noise reduction features in addition to its build quality and 6 hard drive bays. The motherboard offers 8 SATA ports and 4 RAM slots for future expansion. I was planning on using an Intel Celeron processor, but the Pentium G630T is more efficient, generates less heat, and doesn't cost much more. I considered reusing some of my 2TB Western Digital Green drives from my HTPC, but in the end I decided to get 3TB Red Drives instead. Besides their larger capacity, they are specifically designed for this application as well as offering a better warranty and support from the manufacturer.</p>
<p><strong>Software</strong></p>
<p>FreeNAS has a lot of useful documentation, but I found <a href="http://www.engadget.com/2012/02/01/how-to-set-up-a-home-file-server-using-freenas/">Engadget's tutorial</a> to be a better starting point for basic setup. This got me started with basic CIFS sharing that I can access with both my Windows &amp; Linux PCs. I set up my 4 hard drives as a RAID Z2 array which should be able to survive one hard drive failure without affecting performance and two hard drive failures without data loss. After creating the array, I ended up with about 5.5TB of space available for storage. This should be more than enough for the forseeable future, but I can aways get two more hard drives and recreate the array to increase my storage capacity. Another key part of this setup is the recognition that my server will be used for backups only, never as the sole repository of data.&nbsp;</p>
<p>I ran into some issues, however, when I tried to RSYNC from my HTPC to the FreeNAS box. Using a scheduled RSYNC every night is how I plan to backup my media files and is critical to my local backup strategy. After a lot of Googling and experimenting I discovered how to properly setup the permissions on both the FreeNAS server and my HTPC in order to be able to RSYNC properly.&nbsp;</p>
<p>For my purposes I only have a Guest account on the FreeNAS server. This account does not require a password and has full access to all of the files in the share. On the HTPC side I setup Ubuntu to mount the remote share every time it boots by modifying the "/etc/fstab" file with the following line:</p>
<p style="padding-left: 30px;">//192.168.10.200/Archive &nbsp; &nbsp; /mnt/Server<span> <span style="white-space: pre;"> </span></span>cifs<span> <span style="white-space: pre;"> </span></span>guest,uid=joe,gid=joe <span style="white-space: pre;"> </span>0 <span style="white-space: pre;"> </span>0</p>
<p>In this application 192.168.10.200 is the IP Address of the server as perminently assigned by my router. "Archive" is the name of the CIFS share I created on the FreeNAS server. The directory "/mnt/Server" is the local directory on my HTPC that I created to mount the server's share to. CIFS (Common Internet File System) is the file sharing standard. The next three additions are key to getting the permissions correct: &nbsp;"guest" is the user ID on the FreeNAS server, "uid=joe" designates my user ID on my HTPC, and "gid=joe" designates my group ID on my HTPC. When the server's share is properly mounted I then had to make sure that the files I planned to share gave full read/write access to both my user and group.&nbsp;</p>
<p>With these set properly I can now RSYNC my media files from my HTPC to the server with the following command:</p>
<p style="padding-left: 30px;">rsync -avru --delete --progress&nbsp;/local_directory/ /mnt/Server/remote_directory</p>
<p><strong>Conclusion</strong></p>
<p>Now that I have my permissions and RSYNC issues resolved, I am very pleased with my FreeNAS server. With the fan speeds set low it is very quiet and over a week of use it had an average power usage of 48 Watts. File transfer speeds are also pretty good over my newly installed Gigabit network. FreeNAS is a versatile platform and I look forward to learning more about it in the future.&nbsp;</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-32085554.xml</wfw:commentRss></item><item><title>Solar Chargeable Portable Battery Pack</title><category>Electronics</category><dc:creator>Joe</dc:creator><pubDate>Sat, 27 Oct 2012 22:32:58 +0000</pubDate><link>http://www.highonsolder.com/blog/2012/10/27/solar-chargeable-portable-battery-pack.html</link><guid isPermaLink="false">290457:2964484:30121997</guid><description><![CDATA[<div><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Panel.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351375717675',1200,1169);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777751-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351375719091" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Input.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351375756417',963,1200);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777748-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351375758038" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Output.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351375781746',1031,1200);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777750-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351375783268" alt="" /></a></span></span></div>
<p>There are a lot of rechargeable&nbsp;lithium battery packs available. Some have a lot of capacity and others can be used with solar panels, however, I could never find one that fits my requirements. The solar models that I've seen generally don't have much capacity and use such small solar panels that they don't charge very fast. Then I came across Adafruit's USB/Solar Lithium Ion Charger board and it solves all of my problems. This board has a lot of cool features: it can charge a battery via a solar panel or any other 5V input and it can deliver power to the MintyBoost&nbsp;from both the input and the battery simultaneously. In this way you could charge a device on a not so sunny day by drawing some power from the solar panel and the rest from the battery.</p>
<p>My main goal for this project is to have a versatile power pack for use when I go camping/backpacking. I have a fair amount of devices that I typically bring with me that can be charged via USB: camera, headlamp, UV water purifier, cell phone, mp3 player, etc. The 6600mAh battery can charge any of these devices multiple times, providing many days of capacity before needing to be recharged. On sunny days the 3.4W solar panel can recharge the battery if I am away from power for a long period of time. At full power the solar panel will take about 12 hours to fully charge the battery. While this is a long time, for my use case this should be fine as I will most likely be topping off the battery with the solar panel not charging it from zero. I like this solar panel for its combination of size and capacity. A larger panel could charge the battery faster, but would be a lot less portable.</p>
<div><span style="text-decoration: underline;">Parts List</span></div>
<div>
<ul>
<li><a href="https://www.adafruit.com/products/390">USB/Solar Lithium Ion Charger</a></li>
<li><a href="http://www.adafruit.com/products/353">6600mAh Lithium Ion Battery</a></li>
<li><a href="https://www.adafruit.com/products/500">Solar Panel (6V, 3.4W)</a></li>
<li><a href="https://www.adafruit.com/products/14">MintyBoost Kit</a></li>
<li><a href="http://www.radioshack.com/product/index.jsp?productId=2062282">RadioShack 6"x3"x2" Enclosure</a></li>
</ul>
</div>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Cell.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351375975834',1200,898);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777745-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351375977162" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Camera.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351376005711',1200,814);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777744-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351376006967" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fsolar-charger%2FSolar_Inside.jpg%3F__SQUARESPACE_CACHEVERSION%3D1356189841590',590,1200);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-21340051-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1356189843223" alt="" /></a></span></span><a href="http://learn.adafruit.com/usb-dc-and-solar-lipoly-charger">Adafruit has a detailed tutorial</a> that explains how the charger board works and shows how to wire it to the other components. Basically the charger board is connected to both the battery and the MintyBoost and uses either a USB or solar panel input to provide input power when you want to charge the battery. The charger also has the option to output the charging status (charging, charging complete) to external LEDs.</p>
<p>For this project I used a red LED to indicate that the unit was charging and a green LED to indicate that the battery was fully charged. I also isolated the battery from the remainder of the system using a power switch. This prevents the small self drain inherent to the MintyBoost from discharging the battery when I am not using the unit. You just have to remember to turn it on when you want to charge the battery. In addition I used a coaxial power jack for the power input and modified both the solar panel and a USB cable with matching coaxial power plugs of the same size. The final piece was using a scavenged panel mount usb port for the MintyBoost's output.&nbsp;</p>
<p>I have to say that I really like this setup. I can charge all of my devices and when placed in the sun, the solar panel started charging the battery with no problem.</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-30121997.xml</wfw:commentRss></item><item><title>Mini ITX PC Build</title><category>Hardware</category><dc:creator>Joe</dc:creator><pubDate>Sat, 27 Oct 2012 20:28:00 +0000</pubDate><link>http://www.highonsolder.com/blog/2012/10/27/mini-itx-pc-build.html</link><guid isPermaLink="false">290457:2964484:30121990</guid><description><![CDATA[<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FMini_ITX_Vent.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351372953882',1280,1177);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777479-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351372955220" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FMini_ITX_Back.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351372997445',1280,515);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777475-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351372999125" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FMini_ITX_Front.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351373020559',1279,560);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777476-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351373021844" alt="" /></a></span></span>While assembling my new ham radio station I decided to build a dedicated PC to use for digital communications as well as logging. To save space I decided to do this build using the Mini ITX form factor. Other than being a tight fit in the case, this was a relatively straightforward build. It's pretty cool to be able to build such a small and inexpensive system using desktop PC components.&nbsp;</p>
<p><span style="text-decoration: underline;">Specs</span></p>
<ul>
<li>Case - <a href="http://www.antec.com/product.php?id=704515&amp;fid=288">Antec ISK110 VESA</a></li>
<li>CPU - <a href="http://ark.intel.com/products/53414/Intel-Celeron-Processor-G530-2M-Cache-2_40-GHz">Intel Celeron G530</a> (2.4GHz)</li>
<li>Motherboard - <a href="http://www.asus.com/Motherboards/Intel_Socket_1155/P8H61I/">Asus P8H61-I</a>&nbsp;(Intel H61 chipset)</li>
<li>RAM - 4GB G.Skill DDR3 1333</li>
<li>Hard Drive - 320GB Western Digital Scorpio Blue</li>
</ul>
<p><span style="text-decoration: underline;">Performance, Power Usage &amp; Noise</span></p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FMini_ITX_HD.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351373054101',1280,1220);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777477-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351373055553" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FMini_ITX_Inside.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351373076262',1280,1217);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20777478-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351373077643" alt="" /></a></span></span>I have now built a couple of systems using the Sandybridge based Intel Celeron processor and I have to say that I am impressed. While I wouldn't want to use it for video compression, for typical computer usage this processor is plenty fast. This system doesn't sweat running multiple ham radio related apps at once.</p>
<p>With the CPU as the only major component to power, this system is a power miser. At idle it uses about 20 watts and during typical usage it generally stays under 30 watts. Not bad at all.</p>
<p>The same goes for the noise generated by this system. The stock Intel heatsink &amp; fan keeps the processor cool without rising above a whisper. Overall I am very pleased with this system. It's the perfect combination of size, performance, quiet operation, and low cost.</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-30121990.xml</wfw:commentRss></item><item><title>Loop Skywire Antenna</title><category>Ham Radio</category><dc:creator>Joe</dc:creator><pubDate>Fri, 26 Oct 2012 20:06:53 +0000</pubDate><link>http://www.highonsolder.com/blog/2012/10/26/loop-skywire-antenna.html</link><guid isPermaLink="false">290457:2964484:30116310</guid><description><![CDATA[<p><span style="text-decoration: underline;">Design</span></p>
<p>When I bought my house this spring, I immediately started planning an HF antenna for my ham radio station. It's been several years since I last had a permanent base station set up and I wanted to get on the air. After evaluating my options, I decided that a loop antenna would be my best option.&nbsp;The biggest advantage for me is that a large loop antenna fed with ladder line allows for good performance on a wide range of frequencies using a single antenna. This design also allows me to maximize the amount of antenna that I can fit on my 1/2 acre lot (an 80 meter loop is only 72ft on a side vs the 135ft overall length of an 80 meter dipole) without having to put up masts or towers.</p>
<p>The general idea of a loop skywire is to put up as much wire as possible, without worrying about cutting it to resonance, and feed it with ladder line. Since ladder line exhibits very low loss compared to coaxial cable, even with a large impedance mismatch, the total amount of signal loss in the ladder line will be minimal. With a good antenna tuner between the ladder line and the radio, all of the HF ham bands should be available.</p>
<p><span style="text-decoration: underline;">Components</span></p>
<p>For wire I purchased <a href="http://thewireman.com/antennap.html">Wireman #<span>531</span></a>, which is insulated wire made up of stranded 13 AWG copper-clad steel. The steel core makes it strong (400 lb breaking strength) and helps minimize stretch, while the copper cladding gives it good electrical conductivity. The insulation helps to protect the wire from the weather.&nbsp;</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fham%2FLoop_Feedpoint.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351286582666',936,1280);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20771634-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351286584267" alt="" /></a></span></span>The feedline I chose is 300 ohm ladder line, which is a little harder to find than its 450 ohm cousin. Some ladder line is cheaply made, but <a href="http://www.dxengineering.com/parts/dxe-ll300-1c">this type from DX Engineering</a> uses 18 AWG copper-clad steel and works very well. They also make a great<a href="http://www.dxengineering.com/parts/dxe-uwa-kit"> antenna feed point kit</a> with built in strain relief slots for use with their 300 ohm ladder line. It is well worth the money.</p>
<p>While I could have used a balanced tuner, or some other type of manual antenna tuner, I decided to go with an automatic antenna tuner for my station due to their ease&nbsp;of use and their ability to store impedance matches to memory. The memories allow the tuner to pull up previous tuning settings without having to rematch the radio to the antenna, saving a lot of time. I use a <a href="http://www.ldgelectronics.com/c/252/products/17/3/1">LDG AT-200ProII</a>&nbsp;in my station and it has worked great so far with my loop antenna. I chose this model for its wide impedance matching range, its ability to store 4000 frequency &amp; impedance combinations, and its 200 Watt power rating. Although I don't plan on using more than 100 Watts in my station, the 200 Watt model is only slightly more expensive and because of its higher power rating it will hopefully be even better equipped to withstand the high impedance mismatches that this antenna presents.</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fham%2FLoop_Balun.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351286611539',878,1280);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20771632-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351286612920" alt="" /></a></span></span>The final piece of this arrangement is the balun. In this case I used a high power current balun between the ladder line and the antenna tuner. This device blocks the current on one side of the ladder line from continuing on to the shield of the coax on the other side. In this way it transforms the balanced load of the antenna and feedline into an unbalanced load for use with the antenna tuner and radio. I could have made my own balun, but I decided to buy a <a href="http://www.dxengineering.com/parts/dxe-bal050h10at">DX Engineering BAL050-H10-AT</a>. This is heavy-duty (rated for 10KW) balun&nbsp;designed for exactly this type of application and is much better constructed than anything I could have made on my own.&nbsp;</p>
<p><span style="text-decoration: underline;">Construction</span></p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fham%2FLoop_Insulator.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351286639253',814,1280);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20771635-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351286640407" alt="" /></a></span></span>Putting up the loop was a relatively straightforward process. The first step was to pick which trees to put the support ropes in. I don't have a ton of options on my small lot, but four trees were spaced appropriately for me to make a trapezoidal shaped loop. To get the ropes (I used <a href="http://www.dxengineering.com/parts/syn-dbr-187-500">3/16" Dacron</a>) into the trees I used some light nylon cord tied to a wrench and tossed the wrench over the highest branch I could reach. I then pulled the heavier rope up over the branch. Next I attached the insulators that I had made using 1 inch 45 degree PVC elbows (painted black for stealth) and bungie cords. The bungies act as a stress relief between the trees and the antenna, thereby allowing the trees to move in the wind without jerking the antenna too hard. I used bungies on three of the four corners, leaving only the corner nearest the feed point without one.&nbsp;</p>
<p>I then ran the antenna wire through the insulators until I had both ends at the location of the feed point. By taking the slack out of the ropes I was able to start trimming the antenna wire such that when the insulators were lifted as high as I could get them the antenna wire was tight. After a few adjustments, and some branch trimming, I was able to get the antenna in the air. I then set the antenna back down and attached the ladder line to the feed point and raised the antenna to its final position.</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fham%2FLoop_Strain.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351286667686',921,1280);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20771637-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351286668837" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fham%2FLoop_Feedline.jpg%3F__SQUARESPACE_CACHEVERSION%3D1351286686856',1023,1280);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-20771633-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1351286688030" alt="" /></a></span></span>Finally I mounted the balun to the side of the house and ran the ladder line to the balun. To support the ladder line I attached some rope to the feedline with zip ties&nbsp;and hoisted it using an eyebolt screwed into the eave of the house. I also made a spacer/strain relief for the ladder line to keep it away from the aluminum siding on my house. This is necessary because if ladder line is too close to anything conductive it can unbalance the feedline, thereby causing it to radiate like the antenna.</p>
<p><span style="text-decoration: underline;">Performance</span></p>
<p>After trimming, my loop ended up being 215 feet in circumference and uses 47 feet of ladder line. I lucked out on the length of ladder line that I needed; you have to be careful not to use a length that is harmonically resonant on any of the frequencies you wish to operate, otherwise the feedline could radiate and cause interference. While this antenna is technically a little short for use on the 80 meter band, it will tune on that band along with all of the remaining HF ham bands (except 160 meters).</p>
<p>Considering the limitations of my property in terms of the size and height (around 30 feet) of the antenna, I couldn't be happier with it so far. I love the ability to operate from 3.5 to 30 MHz without having to switch antennas. Overall performance has been great. In my limited time using my new station I have been able to contact stations in Europe and throughout the US, as well as have a lot of fun in the Pennsylvania QSO Party (my home state) where I was able to contact pretty much every station that I could hear.&nbsp;</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-30116310.xml</wfw:commentRss></item><item><title>Core i7 Sandybridge PC Build</title><category>Hardware</category><dc:creator>Joe</dc:creator><pubDate>Sun, 03 Apr 2011 19:53:39 +0000</pubDate><link>http://www.highonsolder.com/blog/2011/4/3/core-i7-sandybridge-pc-build.html</link><guid isPermaLink="false">290457:2964484:11036143</guid><description><![CDATA[<p>I last built a workstation about 2 years ago when I put together a <a href="http://www.highonsolder.com/blog/2009/2/14/core-2-duo-pc-build.html">Core 2 Duo box</a>. It was solid machine and in day to day activities had more than enough computing power. Lately, however, I have been doing more video encoding and RAW photo editing and consequently decided that I needed a machine with better performance in those areas.&nbsp;</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25203.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301859635625',970,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543792-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301859635626" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25202.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301859588691',900,553);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543790-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301859588692" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25201.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301859558015',900,606);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543789-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301859558016" alt="" /></a></span></p>
<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25205.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301859959807',874,900);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543795-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301859959808" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25206.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301860102060',900,383);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543796-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301860102061" alt="" /></a></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span style="font-size: 120%;">&nbsp;New PC Specs</span></p>
<ul>
<li>Case - <a href="http://www.antec.com/Believe_it/product.php?id=MTk=">Antec Solo</a></li>
<li>Power Supply - <a href="http://www.corsair.com/power-supplies/non-modular-psus/enthusiast-series-1/vx450w.html">Corsair CMPSU-450VX</a> (450W), reused from previous build</li>
<li>CPU - <a href="http://ark.intel.com/Product.aspx?id=52213">Intel Core i7-2600</a> (3.4GHz)</li>
<li>CPU Cooler - <a href="http://www.xigmatek.com/product.php?productid=119">Xigmatek HDT-S1284F</a>, with <a href="http://www.xigmatek.com/product.php?productid=93">ACK-I5363</a> mounting bracket</li>
<li>Motherboard - <a href="http://gigabyte.com/products/product-page.aspx?pid=3702#ov">Gigabyte GA-H67A-UD3H-B3</a> (Intel H67 chipset)</li>
<li>GPU - ATI Radeon 4850, reused from previous build</li>
<li>RAM - 8GB G.Skill Dual Channel DDR3 1600</li>
<li>Hard Drive - <a href="http://www.wdc.com/en/products/products.aspx?id=100">1TB Western Digital Caviar Black WD1002FAEX</a> (64MB cache, SATA 6Gb/s)</li>
<li>Optical Drive - LG 22x DVD Burner (SATA), reused from previous build</li>
</ul>
<p><span style="text-decoration: underline;">Performance</span></p>
<p>For video compression tasks using Handbrake and Adobe Premiere Elements, this new PC is easily three times faster than my old Core 2 Duo machine. It is also noticably faster at image manipulation tasks, especially converting RAW files to JPEG.</p>
<p><span style="text-decoration: underline;">Power Usage</span></p>
<ul>
<li>Idle: &nbsp;90W</li>
<li>Video Compression: &nbsp;150W</li>
<li>Gaming: &nbsp;205W</li>
</ul>
<p>These numbers are roughly in line with my previous PC, although the idle is actually lower. This is a fantastic result for a significantly more powerful machine.&nbsp;</p>
<p><span style="text-decoration: underline;">Noise and Heat</span></p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25207.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301860256709',1004,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543797-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301860256710" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FCore_i7_PC%25208.jpg%3F__SQUARESPACE_CACHEVERSION%3D1301860277700',931,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-11543798-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1301860277701" alt="" /></a></span></span>My last PC was a particularly quiet machine thanks to its case's usage of large, low RPM fans and noise reduction foam. Hard drive isolation was the only area where faltered. This time around I decided to go with a different case. In some of their cases Antec uses robust silicone cylinders to isolate the hard drive &nbsp;from the case. These worked so fantastically on my <a href="http://www.highonsolder.com/blog/2010/2/26/home-theater-pc-media-server-hardware.html">Home Theater PC Build</a>, that I decided to get a case that featured them this time as well. This combined with some low RPM fans makes this case about as quiet as my last build, minus the hard drive noise. I even purchased some <a href="http://www.amazon.com/gp/product/B0040JHMH6">Silverstone noise reduction foam</a> as well as <a href="http://www.quietpcusa.com/Acousti-Ultra-Soft-Anti-Vibration-Fan-Mount-AFM02B-8-pack-P295C0.aspx">silicone fan mounts</a> to cut down the noise and vibration even further.&nbsp;</p>
<p>The Core i7-2600 is a 95W processor which isn't much heat for the Xigmatek cooler I chose to dissipate. In fact its fan never spins above its minimum RPM.</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-11036143.xml</wfw:commentRss></item><item><title>Arduino Word Clock</title><category>Arduino</category><category>Electronics</category><category>LEDs</category><category>Videos</category><dc:creator>Joe</dc:creator><pubDate>Sun, 09 Jan 2011 00:06:22 +0000</pubDate><link>http://www.highonsolder.com/blog/2011/1/8/arduino-word-clock.html</link><guid isPermaLink="false">290457:2964484:9931538</guid><description><![CDATA[<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-11.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294529286457',1024,1005);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10134478-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294529286457" alt="" /></a></span>I first saw a clock with<a href="http://www.qlocktwo.com/info.php?lang=en"> this type of design</a> on the Make Blog over a year ago. It is an incredibly clever idea, but the $1000 price tag is a bit much for my taste. I had seen a few attempts at a DIY version but most of them were still too complex or expensive to build. Needless to say when I saw <a href="http://www.instructables.com/id/Sleek-word-clock/">this Instuctable</a> I got really excited. It is based off of <a href="http://www.instructables.com/id/A-Word-Clock/">another Instructable</a>, however, it simplifies the design and construction to the point where I felt confident that I could build it.</p>
<p>I followed the Instructable pretty closely, with the following exceptions:</p>
<p><strong><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-1.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528324128',660,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080389-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528324128" alt="" /></a></span>LEDS</strong>: &nbsp;I got my LEDs from <a href="http://evilmadscience.com/partsmenu/89-led">Evil Mad Science</a>, which sells packs of superbright 5mm LEDs in various colors. This project requires a pack of 100 white LEDs.&nbsp;For current limiting resistors I used 470 Ohm instead of 1K Ohm. This allowed me more flexibility since I can dim the LEDs as much as I want, but I can never make them brighter. The LEDs I used are very efficient and only draw 4.8mA with a 470 Ohm resistor, so the maximum power draw for the clock will be about 150mA. Consequently power usage is not an issue since I used a repurposed cell phone charger as the power supply and it can provide 700mA at 5V.&nbsp;</p>
<p><strong><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-4.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528403358',982,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080393-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528403358" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-5.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528428710',974,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080394-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528428710" alt="" /></a></span>Letter Mask:&nbsp;</strong> I had to use 4 transparencies stacked in order to get the mask dark enough. I also used a wider border for the letter mask to cover up some imperfections around the edges of my transparencies. For LED diffusion I used some translucent plastic folders that I found at an office supply store. I got a multicolor pack so that I could try different configurations and decided that a combination of one gray and one white folder cut to fit in the frame was the best looking and most functional choice.</p>
<p><strong><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-6.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528473034',1000,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080395-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528473034" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-7.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528661229',1003,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080396-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528661229" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-8.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294528832035',830,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080397-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294528832036" alt="" /></a></span>LED Holder:</strong> &nbsp;Instead of a cardboard LED holder I used foam poster board. This is a much stiffer material and makes the holder much sturdier, however, it is also thicker so I had to make the light baffles 1" high rather than 1-1/8".</p>
<p><strong>Circuit Board:</strong> &nbsp;Since the wiring on this project is fairly complex I decided early on that I wanted to keep the circuit board as simple as possible. In order to accomplish this I used two <a href="http://www.radioshack.com/product/index.jsp?productId=2102846">Radioshack breadboard matching printed circuit boards</a>. These are great boards since they have power buses running down the sides of each board and they have plenty of room for the 7 chips necessary for this project. This made it very straightforward to scratchbuild an Arduino on one of the boards and then wire it to the other chips. Note: when building an Arduino in this way you need an <a href="http://www.adafruit.com/index.php?main_page=product_info&amp;cPath=33&amp;products_id=70">FTDI cable</a> which plugs into the 6-Pin header on the board in order to program the Arduino.</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-3.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294531667620',934,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080392-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294531667621" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-Schematic.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294531692634',2112,2520);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10135807-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294531692634" alt="" /></a></span>I mounted the boards side-by-side on a piece of acrylic to make it easier to work with. I also wired the board such that I could add a photoresistor in the future to allow for dynamic LED dimming (its wiring is bundled separately for later use as shown in the photos). Instead of wiring headers I just wired directly from the circuit board to the LEDs using multicolor wire to differentiate which word group I was wiring to (you can see each ULN2003A's bundle grouped together in the photos).&nbsp;</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-9.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294531723371',996,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080398-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294531723372" alt="" /></a></span><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FWC%2FWord_Clock-10.JPG%3F__SQUARESPACE_CACHEVERSION%3D1294531781185',806,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-10080401-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1294531781186" alt="" /></a></span>The size of these boards prevented me from trying to mount them inside the picture frame, however, mounting the boards on the back wasn't a problem. As shown in the photos I had use some stacked foam board as spacers between the back of the picture frame and the wall to keep the board from rubbing agains the wall. I also changed the power socket mounting from the back of the frame to the bottom by cutting a notch in the wood and gluing it in place.</p>
<p><strong>Conclusion: &nbsp;</strong>The biggest problem I had with this project was dealing with a slightly imprecise LED layout. This resulted in some of light baffles partially blocking the wrong letters. After removing the problem baffles, however, I found that my diffusion layers worked well at making up for any discrepancies due to LED placement as well as reducing cross-letter light bleed to an acceptable level. As far as the code goes the only changes I made were done to make use of external pull-down resistors instead of internal and to clean up the code a little bit since some of the comments no longer made sense. I really like this project. It is not only cool looking, but it is useful as well.&nbsp;</p>
<ul>
<li><strong><a style="font-size: 150%;" href="http://www.highonsolder.com/storage/code/word_clock_3.pde">Download Word Clock Arduino Code</a></strong></li>
</ul>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-9931538.xml</wfw:commentRss></item><item><title>Arduino - Parallax RFID Reader</title><category>Arduino</category><category>Electronics</category><dc:creator>Joe</dc:creator><pubDate>Sun, 19 Dec 2010 16:30:59 +0000</pubDate><link>http://www.highonsolder.com/blog/2010/12/19/arduino-parallax-rfid-reader.html</link><guid isPermaLink="false">290457:2964484:9773400</guid><description><![CDATA[<p>A few months ago I saw some <a href="http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/rfid/List/0/SortField/4/ProductID/114/Default.aspx">Parallax RFID readers</a> at Radio Shack on clearance and decided to pick them up since they were such a good deal. I have wanted to make an RFID related project for some time after seeing this episode of SYSTM.</p>
<p style="text-align: center;"><embed width="555" height="312" src="http://revision3.com/player-v2343" quality="high" allowscriptaccess="always" type="application/x-shockwave-flash"></embed></p>
<p style="text-align: left;">This project uses a BASIC Stamp, however, which I have no interest in using. So when I found the following post at Gumbo Labs about using the Parallax reader with an Arduino, I was excited. Well I finally got around to trying out their code and it works perfectly. All you have to do is wire up the Parallax reader's power, ground, enable, and serial lines, upload the code and start reading tags.&nbsp;</p>
<ul>
<li><a href="http://www.gumbolabs.org/2009/10/17/parallax-rfid-reader-arduino/">Original Post: &nbsp;Parallax RFID Reader &lt;--&gt; Arduino</a></li>
<li><strong><a style="font-size: 150%;" href="http://www.highonsolder.com/storage/code/rfid_reader.pde">Download RFID Reader&nbsp;Arduino&nbsp;Code</a></strong></li>
</ul>
<p>Here are some pictures of my test setup. As you can see the reader's LED changes from red to green when it is reading a tag.</p>
<p style="text-align: center;"><span class="thumbnail-image-inline ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FRFID-Reader-1.JPG%3F__SQUARESPACE_CACHEVERSION%3D1292776152937',825,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-9886624-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1292776152939" alt="" /><span style="white-space: pre;"><span style="color: #181818;"> </span></span></a></span><span class="thumbnail-image-inline ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FRFID-Reader-2.JPG%3F__SQUARESPACE_CACHEVERSION%3D1292776181208',712,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-9886625-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1292776181208" alt="" /></a></span></p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-9773400.xml</wfw:commentRss></item><item><title>Peggy 2 LED Matrix</title><category>Arduino</category><category>Electronics</category><category>LEDs</category><category>Videos</category><dc:creator>Joe</dc:creator><pubDate>Sun, 08 Aug 2010 17:06:22 +0000</pubDate><link>http://www.highonsolder.com/blog/2010/8/8/peggy-2-led-matrix.html</link><guid isPermaLink="false">290457:2964484:8490104</guid><description><![CDATA[<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPeggy2-Kit.JPG%3F__SQUARESPACE_CACHEVERSION%3D1281239023307',775,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-8034772-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1281239023308" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPeggy2-Board.JPG%3F__SQUARESPACE_CACHEVERSION%3D1281239054725',663,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-8034771-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1281239054725" alt="" /></a></span></span>The Peggy 2 is a 25x25 LED matrix kit from <a href="http://evilmadscience.com/tinykitlist/75">Evil Mad Scientist Labs</a>. Ever since I first saw the Peggy kit I thought it was one of the cooler kits available. I finally got around to getting one of these awesome kits and it is a sight to behold. By far the largest kit I have ever built, it is also the best quality kit I have come across. The Peggy 2's circuit board is probably twice the thickness of a normal printed circuit board, a welcome feature for such a large board since the added thickness makes the board very rigid. You can purchase the Peggy 2 in a variety of kit configurations; I got the so called <em>awesomeness bundle</em> which includes a power supply, extra pushbuttons, and 640 diffused 10mm LEDs in the color of your choosing (white in my case).&nbsp;</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPeggy2-LEDs.JPG%3F__SQUARESPACE_CACHEVERSION%3D1281239138407',733,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-8034773-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1281239138407" alt="" /></a></span></span><span class="thumbnail-image-float-right ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPeggy2-Lit1.JPG%3F__SQUARESPACE_CACHEVERSION%3D1281239162445',746,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-8034774-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1281239162445" alt="" /></a></span></span>The build itself took around 2 hours to assemble the control circuitry and another 4.5 hours to solder all of the LEDs. It's a bit of an undertaking, but when you're done it's a great feeling when all 625 LEDs light up. To program the Peggy you use the <a href="http://arduino.cc/en/Main/Software">Arduino IDE</a> and download the<a href="http://www.evilmadscientist.com/article.php/PeggyArdLib"> Peggy Library</a>. I haven't experimented too much with it yet, but I did try out some of the demo programs from the library and you can see what the Peggy can do in the video below. I look forward to playing with this project a lot in the future.</p>
<p style="text-align: center;"><iframe src="http://player.vimeo.com/video/13963142?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="601" height="398" frameborder="0"></iframe></p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-8490104.xml</wfw:commentRss></item><item><title>Home Theater PC / Media Server Software</title><category>Hardware</category><category>Linux</category><dc:creator>Joe</dc:creator><pubDate>Sun, 28 Feb 2010 18:22:38 +0000</pubDate><link>http://www.highonsolder.com/blog/2010/2/28/home-theater-pc-media-server-software.html</link><guid isPermaLink="false">290457:2964484:6726464</guid><description><![CDATA[<ul>
<li><a href="http://www.highonsolder.com/blog/2010/2/26/home-theater-pc-media-server-hardware.html">Check out the Hardware portion of my HTPC.</a></li>
</ul>
<p>The software setup for my new HTPC started with a clean install of <a href="http://www.ubuntu.com/">Ubuntu 9.10</a>. This went without a hitch and it was time to install the various software packages that I use to get my system in working order.</p>
<p><span style="text-decoration: underline;"><strong>Network Sharing</strong></span></p>
<ul>
<li>Samba (located in the <em>System -&gt; Administration</em> menu after installation)</li>
</ul>
<p>In the Ubuntu repository this is called the <strong>system-config-samba</strong> package. This is a great GUI tool for setting up shares on a Windows network and allows me to view all the content on my HTPC on my Windows machines. Just input your Workgroup, what you want to share and who is allowed to view it. This tool makes this process much easier than editing configuration files. One thing that confused me at first was setting up user access; make sure to include the computer name of the user in the "Windows Username" field. For example "joe" didn't work, but "DESKTOP\joe" did.</p>
<p><span style="text-decoration: underline;"><strong>Backup</strong></span></p>
<ul>
<li>Scheduled Tasks (located in the <em>System Tools</em> menu after installation)</li>
</ul>
<p>Called <strong>gnome-schedule</strong> in the repository this utility allows me to run a backup script at a particular time. This is basically a GUI frontend for <a href="http://en.wikipedia.org/wiki/Cron">CRON</a> and therefore much easier for a Linux novice like myself. I run a <a href="http://en.wikipedia.org/wiki/Rsync">RSYNC</a> script every night at 2AM which synchronizes the hard drive containing my media archive with another hard drive. I have found this a better backup solution than having a RAID array because it doesn't rely on any controller hardware or software. If one of the drives fails I can just replace it and copy the files to the new one. If I want to put the hard drives in another machine I can just take them out and plug them in, no other configuration is necessary. I realize there are drawbacks to this system, but I prefer something that I understand and know how to fix as opposed to other solutions that I have tried that have failed and cannot be fixed (ie. the Drobo).</p>
<p><span style="text-decoration: underline;"><strong>Media Playback<br /></strong></span></p>
<ul>
<li><a href="http://www.videolan.org/">VLC</a> - media player</li>
<li><a href="http://getmiro.com/">Miro</a> - RSS media aggregator/player</li>
<li><a href="http://www.boxee.tv/">Boxee</a> - media center based on XBMC with great web integration</li>
</ul>
<p>This is the standard media grabbing and playback package I have been using for a while now. I use VLC whenever I'm in keyboard and mouse mode to play video and audio files. Miro isn't perfect, but it's better than any other media aggregator I have tried. Boxee is fantastic for local playback as well as web content and it can be controlled via remote control. In the past<a href="http://www.highonsolder.com/blog/2008/11/22/boxee-ubuntu-810-setup.html"> Boxee was somewhat finicky</a> when it came to your audio and video settings, but I have found the new Beta version to be much more stable.</p>
<p><span style="text-decoration: underline;"><strong>Bittorrent</strong></span></p>
<ul>
<li><a href="http://deluge-torrent.org/">Deluge</a> - my favorite torrent client, has the right balance of features and simplicity</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Remote Control</strong></span></p>
<ul>
<li><a href="http://www.lirc.org/">LIRC</a> - configured this for my Windows Media Center remote and it integrated perfectly with XBMC &amp; Boxee</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Accessories</strong></span></p>
<ul>
<li><a href="http://do.davebsd.com/">GNOME Do</a> - an awesome tool much like Quicksilver on the Mac, only for the GNOME desktop</li>
<li><a href="http://www.infinicode.org/code/pyrenamer/">pyRenamer</a> - a fantastic, simple tool for renaming lots of files quickly</li>
</ul>
<p>This setup served me well on my Studio Hybrid HTPC and is performing equally well on my new machine. I frequently try different software packages, but these core programs are always present on my home theater box.</p>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-6726464.xml</wfw:commentRss></item><item><title>Home Theater PC / Media Server Hardware</title><category>Hardware</category><dc:creator>Joe</dc:creator><pubDate>Sat, 27 Feb 2010 00:38:01 +0000</pubDate><link>http://www.highonsolder.com/blog/2010/2/26/home-theater-pc-media-server-hardware.html</link><guid isPermaLink="false">290457:2964484:6712522</guid><description><![CDATA[<p>My first HTPC consisted of some leftover parts I had laying around integrated into a Shuttle XPC barebones system. My replacement for that system was a <a href="http://www.highonsolder.com/blog/2008/11/17/dell-studio-hybrid-wubuntu-810.html">Dell Studio Hybrid</a> which performed well, was relatively quiet, and used little electricity. The main limitation for both of these machines were their reliance on external hard drives for storage expansion. I wanted to build something with more storage and upgrade flexibility.</p>
<p>The following were my goals for my HTPC/media server build:</p>
<ul>
<li>Storage Expandability - plenty of internal 3.5" slots so I can reuse my current content storage drives and add more as needed in the future</li>
<li>Adequate Onboard Video - although not as powerful as nVidia's or ATI's products, Intel's integrated graphics are fine for home theater use when paired with a decent CPU, they also use less power, and their Linux compatibility is generally better</li>
<li>Low Power - this system will be on 24 hours a day so it needs to be as efficient as possible</li>
<li>Quiet - this will sit next to my TV so it has to be as quiet as possible</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Parts</strong></span></p>
<ul>
<li><a href="http://www.antec.com/Believe_it/product.php?id=Mw==">Antec Mini P180</a> Case (MicroATX Mini Tower)</li>
<li><a href="http://www.antec.com/Believe_it/product.php?id=MjIxMg==">Antec Earthwatts Green 380W</a> Power Supply</li>
<li><a href="http://www.intel.com/Products/Desktop/Motherboards/DB43LD/DB43LD-overview.htm">Intel BOXDB43LD</a> Motherboard (MicroATX, X4500 graphics, DVI, 6 SATA ports, 6 channel audio)</li>
<li><a href="http://ark.intel.com/Product.aspx?id=42771">Intel Celeron E3300</a> CPU (2.5 GHz, Dual Core)</li>
<li>G.Skill DDR2 800 RAM (2GB)</li>
<li>LG 22x DVD Burner</li>
<li><a href="http://www.xigmatek.com/product/air-hdtsd964.php">Xigmatek HDT-SD964</a> CPU Cooler (with <a href="http://www.xigmatek.com/product/accessory-crossbow-ack-i7363.php">XIGMATEK ACK-I7363</a> mounting kit)</li>
</ul>
<p>The Antec Mini P180 has 5 internal hard drive bays, plenty of ventilation (120mm &amp; 200mm fans) and sound reducing panels. While this case is much larger than either of my previous HTPCs, I was more than willing to sacrifice space for a better all-around system. The Intel BOXDB43LD motherboard has decent onboard graphics (an upgrade over the Studio Hybrid's X3100), plenty of SATA ports for storage expansion and a decent assortment of AV ports. The Celeron E3300 processor fits my requirements for a processor that is cheap, <a href="http://www.xbitlabs.com/articles/cpu/display/celeron-e3300.html">powerful enough</a>, and uses relatively little electricity. In order to make this build as quiet as possible I decided to use a fanless CPU heatsink. This is possible because the thermal dissipation required by the Celeron E3300 (65W) is low, the heatsink I chose is fairly large, and it should get plenty of airflow from the two case fans even when they are run at their lowest setting.</p>
<p><span class="thumbnail-image-inline ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_Case4.JPG%3F__SQUARESPACE_CACHEVERSION%3D1268512187981',900,524);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126914-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1268512892390" alt="" /></a></span></span>&nbsp; &nbsp;&nbsp;<strong>&nbsp;</strong><strong><span class="thumbnail-image-inline ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_Case.JPG%3F__SQUARESPACE_CACHEVERSION%3D1268513204579',900,754);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126911-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1268513204580" alt="" /></a></span></span>&nbsp; &nbsp;<span class="thumbnail-image-inline ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_Back.JPG%3F__SQUARESPACE_CACHEVERSION%3D1268512985919',900,601);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126910-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1268512987551" alt="" /></a>&nbsp; &nbsp; <span class="thumbnail-image-float-left ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpcs%2FHTPC_Case2.JPG%3F__SQUARESPACE_CACHEVERSION%3D1311345156011',977,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126912-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1311345156012" alt="" /></a></span></span><br /></span></span></strong></p>
<p><strong><br /></strong></p>
<p><strong><span style="text-decoration: underline;"><strong>Assembly</strong></span></strong></p>
<p><span class="thumbnail-image-float-left ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_Inside.JPG%3F__SQUARESPACE_CACHEVERSION%3D1268512677775',900,884);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126915-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1268512680482" alt="" /></a></span></span><span class="thumbnail-image-float-left ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_Case3.JPG%3F__SQUARESPACE_CACHEVERSION%3D1268512740499',895,900);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-6126913-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1268512758433" alt="" /></a></span></span>The build for this machine was fairly straightforward. The case has enough room to creatively route cables behind the motherboard to minimize air blockage. I mounted the DVD burner on the bottom because the top slot's depth is limited by the huge 200mm top fan. I also rotated the CPU's heatsink from its normal orientation to take advantage of the top fan's airflow.</p>
<p>&nbsp;</p>
<p><span class="thumbnail-image-float-right ssNonEditable"><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2FPCs%2FHTPC_SPDIF.JPG%3F__SQUARESPACE_CACHEVERSION%3D1267231067865',423,1024);"><img src="http://www.highonsolder.com/storage/thumbnails/2964467-5930963-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1267231067866" alt="" /></a></span>In order to take advantage of the SPDIF connection on the motherboard I built myself a coaxial SPDIF bracket using an old PCI bracket, a female RCA jack, some single conductor shielded cable, and a 3 pin female header. All you have to do is wire the center of the RCA jack to the pin of the header that connects to the signal pin on the motherboard using the center conductor of the cable. Then connect the cable's shield to the outside of the RCA jack and the ground pin of the motherboard header.</p>
<p><span style="text-decoration: underline;"><strong>Input Devices</strong></span></p>
<p>I have used this control setup for a while now and it works very well for me:</p>
<ul>
<li><a href="http://www.logitech.com/en-us/product/Wireless-touch-keyboard-k400r">Logitech K400 Wireless Keyboard &amp; Touchpad</a> - I have used a lot of different combinations of mice and keyboards with my home theater setup and this one is the best. It takes up less space, has great range, and features a solid keyboard with a very responsive touchpad.</li>
<li><a href="http://www.logitech.com/en-us/support/4739?crid=410&amp;osid=14&amp;bit=64">Logitech Harmony 610 Remote</a> (set to emulate a Windows Media Center remote) - This isn't the most advanced Harmony remote, but it also isn't ridiculously expensive</li>
</ul>
<p><span style="text-decoration: underline;"><strong><strong>Performance</strong></strong></span></p>
<p>Superficially this machine performs about the same as the Studio Hybrid. I noticed slightly less CPU utilization when playing videos. This could be attributed to the improved graphics processor, although the X4500 does not support CPU offloading of video decoding for any format other than MPEG2.</p>
<p>Here's a performance comparison between this build (bold) and my Studio Hybrid (in parenthesis):</p>
<ul>
<li>Boot Time - <strong>0:55</strong> (1:00)</li>
<li>CD Rip to FLAC time - <strong>2:16</strong> (3:41)</li>
<li>FLAC to MP3 Compression time - <strong>1:16</strong> (1:31)</li>
</ul>
<p>Based on this info it seems that the Celeron E3300 is somewhat more powerful than the Core 2 Duo T5800 in the Studio Hybrid. Some of the performance difference can be attributed to the slower hard drive in the Studio Hybrid and the CD ripping performance was definitely affected by the much faster DVD drive in the new HTPC. However, the MP3 compression test relies heavily on CPU performance alone and shows that the Celeron E3300 is a solid performer.</p>
<p><span style="text-decoration: underline;"><strong><strong>Power Usage<br /></strong></strong></span></p>
<ul>
<li>Idle - 42W</li>
<li>Play 720p Video - 51W</li>
<li>Play 1080p Video - 55W</li>
<li>FLAC to MP3 Compression - 64W</li>
<li>Average over a week - 44.2W</li>
</ul>
<p>Previously I determined that my Studio Hybrid used an average of 27W over the course of a week. This is 39% less than the 44.2W average used by my new HTPC, however, it doesn't take into account the two external hard drives I had attached to the Studio Hybrid that are now mounted internally. When you add in the 5W used by each of the two hard drives, it results in only a 16.3% power savings by the Studio Hybrid over my new HTPC. That's pretty good considering this new system is faster and uses desktop instead of laptop components.</p>
<p><span style="text-decoration: underline;"><strong>Noise &amp; Heat</strong></span></p>
<p>I am very happy that all of my attempts to keep this machine as quiet as possible were very successful. In terms of absolute volume its probably about the same as the Studio Hybrid, however, the fans on this system are much lower pitched and therefore blend into the background noise of the room a lot more. Another advantage is that when under heavy load the fans don't spin up &amp; generate more noise like they did on the Studio Hybrid. The default cooling is more than enough for the low level of heat generated by this system. The CPU stays around 38C and the hard drives stay under 30C at all times.</p>
<ul>
<li><a href="http://www.highonsolder.com/blog/2010/2/28/home-theater-pc-media-server-software.html">Check out the Software portion of my HTPC.</a></li>
</ul>]]></description><wfw:commentRss>http://www.highonsolder.com/blog/rss-comments-entry-6712522.xml</wfw:commentRss></item></channel></rss>