<?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>Synthetos &#187; HowTo</title>
	<atom:link href="http://blog.synthetos.com/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.synthetos.com</link>
	<description>Complex Ideas...</description>
	<lastBuildDate>Wed, 30 Jun 2010 21:16:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Restoring an Embedded Linux Raid Device</title>
		<link>http://blog.synthetos.com/restoring-an-embedded-linux-raid-device/</link>
		<comments>http://blog.synthetos.com/restoring-an-embedded-linux-raid-device/#comments</comments>
		<pubDate>Sat, 01 May 2010 01:00:05 +0000</pubDate>
		<dc:creator>Ril3y</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[embedded device]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[linear drive]]></category>
		<category><![CDATA[losetup]]></category>
		<category><![CDATA[mdadm]]></category>
		<category><![CDATA[Nas]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[raid controller failed]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[software raid]]></category>
		<category><![CDATA[WDG2NC10000N]]></category>
		<category><![CDATA[Western Digital]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=360</guid>
		<description><![CDATA[So I picked up a Western Digital My Book II World Edition (WDMBWEII) a few years back to place all of my digital &#8220;life&#8221; on. Well being stupid&#8230; (perhaps pre-occupied) I did not have a up-to-date backup of the NAS since 2008 OCT. Needless to day the NAS failed. However, interestingly enough as luck would [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://salestores.com/stores/images/images_747/WDG2NC10000N.jpg" alt="" width="192" height="240" />So I picked up a <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822136083" target="_parent">Western Digital My Book II World Edition</a> (WDMBWEII) a few years back to place all of my digital &#8220;life&#8221; on.  Well being stupid&#8230; (perhaps pre-occupied) I did not have a up-to-date backup of the NAS since 2008 OCT.  Needless to day the NAS failed.  However, interestingly enough as luck would have it the NAS embedded system is the part that failed.  Meaning&#8230; The software raid devices we (Hard Drives) were just fine.. No corruption or anything.  In spirit of helping someone else out that might experience this problem I thought I would document the journey to recovery.</p>
<p>Backups.  You should backup your drives before you try to re-assemble them.  This will take a significant amount of time.  However, should you fat finger something or just have bad luck it will be worth the effort.</p>
<p>Assumptions:  You know what Linux is.  You have a vaild Ubuntu system to use as a &#8220;2 day dedicated raid restore system&#8221;.  You have a way to attach the 2 drives you popped from your WD MBWEII.  I used <a href="http://www.tigerdirect.com/applications/SearchTools/item-details.asp?Sku=T925-1500" target="_parent">this</a>.  You have 1 drive that is 1.5 TB (1tb will do it but its cutting it close)  to put the new images on.</p>
<p>Ok so backup your drives with dd_rescue (you can use dd if you prefer however dd_rescue gives you some nice &#8220;feedback&#8221; to show your backup progress).  Once you do that mount them as &#8220;loop devices&#8221;.  Then you reassemble the raid device with the mdadm command.  Below will walk you through all of this.</p>
<p><span style="color: #ff0000;"><strong><span style="background-color: #ffff00;">BACKUP YOUR DRIVES:</span></strong></span></p>
<p><span style="color: #ff0000;"><strong><span style="color: #cccccc; font-weight: normal;">Find out what the names of your drives are:</span></strong></span></p>
<p>
<strong><em><span style="color: #ff6600;">sudo fdisk -l<br />
</span></em></strong>This should return your drive information.  Look for the 2 drives that appear to be the same size.  So something like:<br />
 /dev/sdb and /dev/sdc<br />
 There will be multiple partitions on each drive.  The partition we want to backup is the /dev/sdX4 this contains the data.  So:</p>
<p><br class="spacer_" /></p>
<p><span style="display: inline;"> </span></p>
<div id="_mcePaste"><span style="color: #ff6600;"><em><strong>sudo dd_rescue /dev/sdb1 /media/drive_to_backup_to<br />
</strong></em></span><br />
 Replace drive_to_backup_to with whatever / wherever you want to place the 465GBish image to.<br />
 Do this for both of the drives then set them aside.</div>
<div id="_mcePaste">Ok 24 hoursish later you should have your images.  Now its time to set them up as virtual devices via the losetup command.  So this is what we are going to do in psuedo speak.  We make both image files local loop back devices.  Then we re-assemble the stripped array (which I believe is a raid 0) fromt he images.  ***Note your original drives you took from the WDMYBEII should be somewhere safe&#8230; You should not need them again.  That is until you remove all your data and want to &#8220;do&#8221; something with them again.   So lets ressaemble the drives and restore our data!</div>
<div id="_mcePaste"><em><strong><span style="color: #ff6600;">sudo losetup /dev/loop0 /path/to/backup_drive1</span></strong></em></div>
<div id="_mcePaste"><em><strong><span style="color: #ff6600;">sudo losetup /dev/loop1 /path/to/backup_drive2</span></strong></em></div>
<div id="_mcePaste">That will setup your created images as &#8220;virtual devices&#8221; .  So now lets reassemble them via mdadm. <br />
<em><strong><span style="color: #ff6600;">sudo mdadm &#8211;assemble /dev/md1  &#8211;force /dev/loop0 /dev/loop1 </span></strong></em></div>
<div id="_mcePaste">I am not sure if &#8211;force is needed however its what I did.</div>
<div id="_mcePaste">Lastly we need to mount this newly created &#8220;raid&#8221;device via the mount command.   I created a mount point for it too.  So:<br />
 sudo mkdir /media/NAS</div>
<div id="_mcePaste">sudo mount /dev/md1 /media/NAS</div>
<div id="_mcePaste">***Note if your mount fails (which mine did not)  it might be asvisible to run an fsck on the /dev/md1 device an then trying again. howeve ryou are on your own on this.</div>
<ol>
<li>Copy your files off quick to another drive and pray for good weather! </li>
<li>Credits:  I got alot of the help from <a href="http://mybookworld.wikidot.com/rescue-procedure-take-2" target="_parent">this</a> post on the WDMBWEII wiki dot page. </li>
</ol>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/restoring-an-embedded-linux-raid-device/&title=Restoring+an+Embedded+Linux+Raid+Device&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/restoring-an-embedded-linux-raid-device/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make an Eagle Solder Mask Stencil for an Laser Cutter</title>
		<link>http://blog.synthetos.com/how-to-make-an-eagle-solder-mask-stencil-for-an-laser-cutter/</link>
		<comments>http://blog.synthetos.com/how-to-make-an-eagle-solder-mask-stencil-for-an-laser-cutter/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 13:14:45 +0000</pubDate>
		<dc:creator>Ril3y</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Laser Cutting]]></category>
		<category><![CDATA[laser]]></category>
		<category><![CDATA[Laser Cutter]]></category>
		<category><![CDATA[laser cutting]]></category>
		<category><![CDATA[pcb]]></category>
		<category><![CDATA[smd]]></category>
		<category><![CDATA[smt]]></category>
		<category><![CDATA[solder mask]]></category>
		<category><![CDATA[soldering]]></category>
		<category><![CDATA[stencil]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=290</guid>
		<description><![CDATA[There is a hardware hacking class that qlabs is presenting over at hacdc.  My friends over at theQlabs asked if I could whip up a solder mask stencil to aide with soldering the SMD portion of the GoodFet hardware they are using.  I went ahead and did so..  I also took some screen shots to [...]]]></description>
			<content:encoded><![CDATA[<p><br class="spacer_" /></p>
<div id="_mcePaste" style="text-align: left;">There is a hardware hacking class that qlabs is presenting over at <a href="hacdc.org" target="_blank">hacdc</a>.  My friends over at <a href="http://www.theqlabs.com/" target="_blank">theQlabs</a> asked if I could whip up a solder mask stencil to aide with soldering the SMD portion of the GoodFet hardware they are using.  I went ahead and did so..  I also took some screen shots to demo the process for everyone.  So this is how I do this.</div>
<div id="_mcePaste" style="text-align: left;">Everything you need to create a good solder mask is built right into EAGLE PCB.  The first thing we do it download the <a href="http://goodfet.sourceforge.net/releases/goodfet21.zip">goodfet21.zip</a> EAGLE files.  We open the BRD file (you might be able to use the GERBER files but this is how I do it) and Hide all layers.</div>
<p style="text-align: left;"> </p>
<p style="text-align: left;"><img src="http://blog.synthetos.com/wp-content/uploads/2010/03/1.png" alt="Step 1" width="600" height="361" /></p>
<p style="text-align: left;">Hide the all of the layers.  Then display only the Dimension and Tcream.  (Note: in the screen shot its the document.. it needs to be Dimension).  Also change the fill style for the cream layer.  It is a &#8220;hatch&#8221; looking pattern by default.  We want a solid color pattern.  I left the color Grey.  When we print the PDF it will turn it black anyways so it does not matter. Click ok.</p>
<p style="text-align: left;"><a href="http://blog.synthetos.com/wp-content/uploads/2010/03/23.png"><img class="alignnone size-full wp-image-301" title="2" src="http://blog.synthetos.com/wp-content/uploads/2010/03/23.png" alt="" width="520" height="932" /></a></p>
<p style="text-align: left;">Now you need to click Print and then click the PDF button.  This is going to get us a vector format of the stencil.  However, for some weird reason the PDF writer in EAGLE creates some sort of non-standard PDF (not sure exactly).  This does not allow us to just import this into Corel Draw (corel is what the vector cutting drivers work  for the epilog laser cutter).</p>
<p style="text-align: left;">So scroll down to see the next step.</p>
<p style="text-align: left;"><a href="http://blog.synthetos.com/wp-content/uploads/2010/03/4.png"><img class="alignnone size-full wp-image-294" title="Step 4" src="http://blog.synthetos.com/wp-content/uploads/2010/03/4.png" alt="" width="588" height="489" /></a></p>
<p style="text-align: left;">Now you will need to download Ghostscript and Gview for your platform.  Here is the windows links.<br />
 http://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs864/gs864w32.exe &#8211; Ghostview<br />
 http://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/gsv49w32.exe &#8211; Gview (Windows GUI for Ghost Script)</p>
<p style="text-align: left;">Ok once those are installed go ahead and open Gview and then open the PDF we created above.</p>
<p style="text-align: left;"><a href="http://blog.synthetos.com/wp-content/uploads/2010/03/51.png"><img class="alignnone size-medium wp-image-296" title="5" src="http://blog.synthetos.com/wp-content/uploads/2010/03/51-300x269.png" alt="" width="300" height="269" /></a></p>
<p style="text-align: left;">Now click File &gt;&gt; Convert.  Select the EPS Write and type in 1200 dpi.  Then click OK and save it. You now have the file you will be loading into the epilog laser cutter.</p>
<p style="text-align: left;"><a href="http://blog.synthetos.com/wp-content/uploads/2010/03/6.png"><img class="alignnone size-medium wp-image-297" title="6" src="http://blog.synthetos.com/wp-content/uploads/2010/03/6-300x186.png" alt="" width="300" height="186" /></a></p>
<p style="text-align: left;">Open up Corel draw&#8230; Ungroup everything (if needed) and check the outside lines for duplicates.. Meaning select a outer line and delete it&#8230; If you see another line.. Delete that one until the lines are no more.. Then just undo the last delete.  Why do we do that?  For some reason Ghostscript from time to time adds multiple lines on the outside.. Not sure why.  But if we do not delete them we will have the laser cutter going over everything (at least the outter edges) 2x or 3x.  Ok so you have removed all duplicated lines and now you are ready to select all and make the line width a &#8220;hairline&#8221; width.  This is something that corel calls it.  This is the #1 reason that you can only use Corel draw to do cuts (vector stuff) with the epilog.  So anyhow.. Now you should print it out.  Setup your desired epilog settings (based on your material) and have at it.</p>
<p style="text-align: left;"><a href="http://blog.synthetos.com/wp-content/uploads/2010/03/7.png"><img class="alignnone size-medium wp-image-298" title="7" src="http://blog.synthetos.com/wp-content/uploads/2010/03/7-300x204.png" alt="" width="300" height="204" /></a></p>
<p style="text-align: left;">Your done!   (DFX is here: <a style="font-family: inherit; font-weight: inherit; font-style: inherit; font-size: 13px; text-decoration: none; color: #9fd4f6; padding: 0px; margin: 0px;" href="http://blog.synthetos.com/wp-content/uploads/2010/03/goodfet-gs.zip">Goodget 2.1 stencil dxf</a>)</p>
<p><a title="Goodfet Solder Paste Stencil" href="http://www.flickr.com/photos/31697990@N00/4441671801/"><img class="alignleft" src="http://farm3.static.flickr.com/2603/4441671801_c30f15a6ef.jpg" alt="Goodfet Solder Paste Stencil" width="500" height="334" /></a></p>
<p><br class="spacer_" /></p>
<p style="text-align: left;"><span style="line-height: 19px;"> </span></p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/how-to-make-an-eagle-solder-mask-stencil-for-an-laser-cutter/&title=How+to+make+an+Eagle+Solder+Mask+Stencil+for+an+Laser+Cutter&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/how-to-make-an-eagle-solder-mask-stencil-for-an-laser-cutter/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>1Wire Real Time Clock With Arduino</title>
		<link>http://blog.synthetos.com/1wire-real-time-clock-with-arduino/</link>
		<comments>http://blog.synthetos.com/1wire-real-time-clock-with-arduino/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:17:16 +0000</pubDate>
		<dc:creator>Ril3y</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[1wire]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[ds1904]]></category>
		<category><![CDATA[one wire]]></category>
		<category><![CDATA[onewire]]></category>
		<category><![CDATA[rtc]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=261</guid>
		<description><![CDATA[So I ordered a 1-Wire RTC (real time clock) from the maxim corporation.  To be exact its a ds1904.  What is really cool about the 1-Wire protocol is it only needs 1 wire to send data on.  It is a bit misleading however since it does need a ground as well.  You really need to [...]]]></description>
			<content:encoded><![CDATA[<p>So I ordered a 1-Wire RTC (real time clock) from the maxim corporation.  To be exact its a <a href="http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2817" target="_blank">ds1904</a>.  What is really cool about the 1-Wire protocol is it only needs 1 wire to send data on.  It is a bit misleading however since it does need a ground as well.  You really need to read the data sheet on these guys to understand fully how they work.  But in the mean time basically one button gets to talk at a time.  Every button has a unique serial number which is kind of a cool feature in it self.  Since its in a steel &#8220;can&#8221; its really rugged so you could place it on say a card, keychain etc?  It would be cool to use as a key FOB to get into my workshop.  However no time for a new project at the moment.  The reason I am messing with this stuff is I had to take a break from the project I have been working on for work.  Call it a mind break.</p>
<p>I created a DIY (with a laser cutter that is) OneWire button mount as you can see it just holds 2 wires against the top and bottom of the steel can.  Pretty simple.  Not really useful as an end solution but good for testing.</p>
<p><a title="DSC_5387.JPG" href="http://www.flickr.com/photos/31697990@N00/4288965073/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2717/4288965073_478b4245b6_m.jpg" alt="DSC_5387.JPG" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Anyhow there is a nice Arduino lib for the 1-wire stuff <a href="http://homepage.mac.com/wtpollard/Software/FileSharing7.html">here</a>.  Just extract this to your arduinoxxx/hardware/lib/OneWire folder.</p>
<p><br class="spacer_" /></p>
<div id="_mcePaste">This is the source code that I used and edited to get the RTC DS1904 working.  Note that you need to uncomment the //write Section upload it to the board let it run then re-comment it and upload it again.  Otherwise the oscillators will not turn on and it does not &#8220;count seconds&#8221; or more to the point at as a normal clock.</div>
<p>This is the source code that I used and edited to get the RTC DS1904 working.  Note that you need to uncomment the //write Section upload it to the board let it run then re-comment it and upload it again.  Otherwise the oscillators will not turn on and it does not &#8220;count seconds&#8221; or more to the point at as a normal clock.</p>
<p><br class="spacer_" /></p>

<div class="wp_syntax"><div class="code"><pre class="arduino" style="font-family:monospace;"><span style="color: #339933;">#include </span>
&nbsp;
<span style="color: #666666; font-style: italic;">// DS1904 Real Time Clock iButton I/O</span>
OneWire ds<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">10</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// on pin 10</span>
&nbsp;
<span style="color: #993333;">void</span> setup<span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">begin</span><span style="color: #009900;">&#40;</span><span style="color: #0000dd;">9600</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">void</span> loop<span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">byte</span> i<span style="color: #339933;">;</span>
  <span style="color: #993333;">byte</span> present <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
  <span style="color: #993333;">byte</span> data<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">8</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #993333;">byte</span> addr<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">8</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span>ds.<span style="color: #202020;">search</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;No more addresses found.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      ds.<span style="color: #202020;">reset_search</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000066;">delay</span><span style="color: #009900;">&#40;</span><span style="color: #0000dd;">500</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// for readability</span>
      <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;ROM: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> i <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #0000dd;">8</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> HEX<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> OneWire<span style="color: #339933;">::</span><span style="color: #202020;">crc8</span><span style="color: #009900;">&#40;</span> addr<span style="color: #339933;">,</span> <span style="color: #0000dd;">7</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> addr<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">7</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;CRC is not valid!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> addr<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #208080;">0x24</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span>Device is not a DS1904 family device.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
  // write!
  Serial.println(&quot;writing to RTC...&quot;);
  present = ds.reset();
  ds.select(addr);
  ds.write(0x99,1);   // write RTC - this is the write code
  ds.write(0xAC);  //This is the control byte.  AC in hex = 10101100
                   //read the datasheet and you will see that this is important
                   //to start the internal osc's... Or to make the clock start
                   //counting seconds.  --ril3y
  ds.write(0x02);  //0x02 is a random time set it with your own
  ds.write(0x03);  //same with this
  ds.write(0x05);  //this
  ds.write(0x08);  //and this
  present = ds.reset();
  delay(1500);     // unknown if wait needed
*/</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// read!</span>
  present <span style="color: #339933;">=</span> ds.<span style="color: #202020;">reset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  ds.<span style="color: #202020;">select</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  ds.<span style="color: #202020;">write</span><span style="color: #009900;">&#40;</span><span style="color: #208080;">0x66</span><span style="color: #339933;">,</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>   <span style="color: #666666; font-style: italic;">// read RTC</span>
&nbsp;
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;PR: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span>present<span style="color: #339933;">,</span> HEX<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span> i <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #0000dd;">5</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    data<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> ds.<span style="color: #202020;">read</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; CTRL BYTE:  &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> BIN<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\t</span>time:  &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span> i <span style="color: #339933;">=</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #0000dd;">5</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> HEX<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066;">Serial</span>.<span style="color: #202020;">print</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #000066;">Serial</span>.<span style="color: #202020;">println</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Note that I did not write most of this code.  You can see the original thread <a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1248727122/0">here</a>:  This should be enough to get you starting using a 1Wire RTC.  Enjoy!</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/1wire-real-time-clock-with-arduino/&title=1Wire+Real+Time+Clock+With+Arduino&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/1wire-real-time-clock-with-arduino/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Headless VirtualBox</title>
		<link>http://blog.synthetos.com/headless-virtualbox/</link>
		<comments>http://blog.synthetos.com/headless-virtualbox/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 01:54:55 +0000</pubDate>
		<dc:creator>Omer Osman</dc:creator>
				<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=215</guid>
		<description><![CDATA[I&#8217;m currently laying out a DSP/FPGA board to interface to the MUSAMP board below for real-time signal processing. I&#8217;m laying out the schematics and PCB layout using gEDA (GPL Electronic Design Automation) tools. I originally started working on gEDA through a SuSE VirtualBox virtual machine on a Mac OSX host. The Mac OSX host is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">I&#8217;m currently laying out a DSP/FPGA board to interface to the <a title="MUSAMP" href="http://blog.synthetos.com/MUSAMP">MUSAMP</a> board below for real-time signal processing. I&#8217;m laying out the schematics and PCB layout using <a title="gEDA" href="http://www.gpleda.org/sources.html">gEDA</a> (GPL Electronic Design Automation) tools. I originally started working on gEDA through a SuSE <a title="VirtualBox" href="http://www.virtualbox.org/">VirtualBox</a> virtual machine on a Mac OSX host.</p>
<p style="text-align: left">The Mac OSX host is on a Macbook Pro, which is naturally somewhat limited in resources compared to desktops. In addition, I tend to have my spec sheets open through <a title="Spaces" href="http://www.apple.com/macosx/what-is-macosx/apps-and-utilities.html#spaces">spaces</a>. Zooming in and out in gschem and flipping between spec sheets wasn&#8217;t as responsive as I hoped.</p>
<p style="text-align: left">After some trouble migrating the VirtualBox &#8216;Appliance&#8217; to my Windows 7 desktop (required an NTFS partition), I started using &#8216;Headless&#8217; mode in VirtualBox. &#8216;Headless&#8217; starts the virtual machine in the background, which can then be accessed using Windows&#8217; RDP protocol (the standard windows remote desktop software).</p>
<p style="text-align: left">A few things of note, Windows 7 uses port 3389 for remote desktop, which is the same as the default port in VirtualBox. Change the port, and make sure your firewall lets the chosen port (in TCP) through.</p>
<p style="text-align: left">Execute in command prompt</p>
<p style="text-align: left">%VirtualBox Installation%/VBoxHeadless &#8211;startvm &#8220;VirtualMachineNameHere&#8221; &#8211;vrdp=config</p>
<p style="text-align: left">Choose a remote desktop <a title="client" href="http://en.wikipedia.org/wiki/Comparison_of_remote_desktop_software">client</a> for your remote computer (TSclientX is the only Mac OSX client that worked with VirtualBox, CoRD worked only for getting to Windows 7).</p>
<p style="text-align: left">If it works, make a shortcut to the above command with cmd.exe as a prefix.</p>
<p style="text-align: left"> </p>
<p style="text-align: left">EDIT #1: make sure to install VBoxGuestAdditions. You can then change the resolution from your RDP client by</p>
<p style="text-align: left">$ sudo /opt/VBoxGuestAdditions-3.x.x/bin/VBoxControl guestproperty set /VirtualBox/GuestAdd/Vbgl/Video/SavedMode 848x480x32</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/headless-virtualbox/&title=Headless+VirtualBox&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/headless-virtualbox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MUSAMP</title>
		<link>http://blog.synthetos.com/musamp/</link>
		<comments>http://blog.synthetos.com/musamp/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 23:35:41 +0000</pubDate>
		<dc:creator>Omer Osman</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Laser Cutting]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=212</guid>
		<description><![CDATA[I was browsing G Randy Slone&#8217;s High-Power Audio Amplifier Construction Manual (great resource!) when I noticed he had some sample PCB layouts in the back of the book. Although he mentions that the layouts are dual sided, they&#8217;re really single sided, with components on the other side. The PCB layout sheets are a bit confusing [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">I was browsing G Randy Slone&#8217;s <a href="http://www.amazon.com/High-Power-Audio-Amplifier-Construction-Manual/dp/0071341196/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1262128234&amp;sr=8-1" target="_blank">High-Power Audio Amplifier Construction Manual</a> (great resource!) when I noticed he had some sample PCB layouts in the back of the book. Although he mentions that the layouts are dual sided, they&#8217;re really single sided, with components on the other side. The PCB layout sheets are a bit confusing because of this. He has a negative of the &#8216;top&#8217;, &#8216;bottom&#8217; and combined top and bottom which is really the see through of the two layers.</p>
<p style="text-align: left">I picked the ~250w amplifier for musical instruments (short circuit protection, etc) which is not the best performing of the bunch but is a good compromise between complexity and performance.</p>
<p style="text-align: left"> </p>
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh3.ggpht.com/_DBMmIvGx8ew/SzmaRHEVo0I/AAAAAAAAAGQ/Fdqo7Sxgmio/s400/Amp.jpg" alt="This is probably copyrighted, but it just to get the idea (fair use)" width="400" height="298" /><p class="wp-caption-text">This is probably copyrighted, but it just to get the idea (fair use)</p></div>
<p><br class="spacer_" /></p>
<p style="text-align: left">Armed with some copper clad and spray paint, I went over to the Synthetos Laboratory for some rapid prototyping of this 0.05% THD amplifier. Step one is to paint the copper clad with spray paint primer. Step two is to import the layout (scanned at 1200 dpi-native res for the lazor etcher), cleaned it up a bit in Photoshop then presented it as a print out to the Laser Etcher.</p>
<p style="text-align: left">
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh3.ggpht.com/_DBMmIvGx8ew/SzqD4LtA85I/AAAAAAAAAHo/JViHnzwkrcM/s400/4209163645_5897aa1e90_o.jpg" alt="Laser Etcher about 50% through the Copper Clad" width="400" height="268" /><p class="wp-caption-text">Laser Etcher about 50% through the Copper Clad</p></div>
<p style="text-align: left">As you can see, the laser etcher prints on the copper clad by removing the spray paint primer, which exposes the copper. Next up, is the traditional Ferric Chloride solution which removes the copper from the clad material.</p>
<p style="text-align: left">
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh5.ggpht.com/_DBMmIvGx8ew/SzmZvUqGALI/AAAAAAAAAFA/V3Ix7Df8wh0/s400/P1000764.jpg" alt="Removed Copper" width="400" height="302" /><p class="wp-caption-text">Removed Copper</p></div>
<p style="text-align: left">After etching, the exposed copper dissolves in to the Ferric Chloride solution (oxidation/reduction?) and what is left is the covered copper (with spray paint primer) and the see through clad material. At this step, I tried to use Paint thinner to remove the spray paint.</p>
<p style="text-align: left">
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh3.ggpht.com/_DBMmIvGx8ew/SzmZvsSjHRI/AAAAAAAAAFE/NNtuGhwfZ9k/s400/P1000765.jpg" alt="Notice the Sponge Brush" width="400" height="302" /><p class="wp-caption-text">Notice the Sponge Brush</p></div>
<p style="text-align: left">The sponge brush that I got from the paint section at Home Depot is a great tool. Along with a plastic/rubber paint tray, I was able to use only a small amount of Ferric Chloride to remove the copper. Basically I poured a small amount in to the plastic tray, and brushed the copper clad continuously until the copper came off in about 15 mins. No heating was required, and compared to the amount of Ferric Chloride saved (vs using complete submersion), this was well the effort.</p>
<p style="text-align: left">Unfortunately, the paint thinner didn&#8217;t quite work, or maybe I didn&#8217;t rub it hard enough. I then used some nail polish remover (Fisher Scientific acetone passed away) and some #0000 steel wool to remove the paint. Below is whats left.</p>
<p style="text-align: left">
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh4.ggpht.com/_DBMmIvGx8ew/SzmZw9CbrAI/AAAAAAAAAFY/PHP4s6Rgy-g/s400/P1000773.JPG" alt="Close Up of the Finished Board" width="400" height="300" /><p class="wp-caption-text">Close Up of the Finished Board</p></div>
<p style="text-align: left">A nice feature of the laser etcher is that it works on so many different materials for just as many uses. Below is the &#8216;top&#8217; side print of the components.</p>
<p style="text-align: left">
<div class="wp-caption aligncenter" style="width: 410px"><img src="http://lh4.ggpht.com/_DBMmIvGx8ew/SzqD53P695I/AAAAAAAAAIo/Ess7cZucK_Y/s400/4209261965_9f89ede8ee_o.jpg" alt="Components Side Print on the Single Sided Copper Clad Board" width="400" height="268" /><p class="wp-caption-text">Components Side Print on the Single Sided Copper Clad Board</p></div>
<p style="text-align: left">The beauty of this is that all of this was done, in one evening!</p>
<p style="text-align: left"> </p>
<p style="text-align: left">And now, I&#8217;m off for some classical music!! Ciao.</p>
<p style="text-align: left"> </p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/musamp/&title=MUSAMP&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/musamp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Buss Pirate V3 Basics on Mac</title>
		<link>http://blog.synthetos.com/bus-pirate-v3-basics-on-mac/</link>
		<comments>http://blog.synthetos.com/bus-pirate-v3-basics-on-mac/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 23:23:27 +0000</pubDate>
		<dc:creator>Ril3y</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[buss pirate]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[serial]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=119</guid>
		<description><![CDATA[  Today I got home from my day job and found at small package with custom stamps all over it.  Needles to say this was the V3 Bus Pirate that I orded about 3 &#8211; 4 weeks ago.  After I took it out of the package I wanted to test it out a bit.  Kicked [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"> </p>
<p><a title="Bus Pirate - V3" href="http://www.flickr.com/photos/31697990@N00/4110814272/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2736/4110814272_49367a3f10_m.jpg" alt="Bus Pirate - V3" /></a></p>
<p>Today I got home from my day job and found at small package with custom stamps all over it.  Needles to say this was the V3 Bus Pirate that I orded about 3 &#8211; 4 weeks ago.  After I took it out of the package I wanted to test it out a bit.  Kicked on the Macbook Air and hooked it up.  The quick and easy way to connect to the Bus Pirate V3 via OSX is just to do this:</p>
<p><br class="spacer_" /></p>
<p><span style="font-family: andale mono,times;">screen /dev/tty.usbserial-A600aSlz  115200</span></p>
<p>After that you should see something like this: (If you don&#8217;t see anything just hit enter a few times)</p>
<p><a title="Bus Pirate V3 - OSX" href="http://www.flickr.com/photos/31697990@N00/4109994415/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2597/4109994415_de5334095d.jpg" alt="Bus Pirate V3 - OSX" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Once there I typed in capitol M and it quickly displayed a listing of supported protocols seen here:</p>
<p><a title="Bus Pirate V3 - OSX" href="http://www.flickr.com/photos/31697990@N00/4109994271/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2786/4109994271_0bbd30a481.jpg" alt="Bus Pirate V3 - OSX" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>So just push something like 9 &lt;enter&gt; and it will change the mode of the bus pirate to PC KEYBOARD mode.  Very cool stuff.  Will blog more on it after my work on the <a href="contraptor.org" target="_blank">contraptor.org</a> project for the lightning talks @<a href="http://hacdc.org/content/hacdc-lightning-talks-0">hacdc</a> is over.</p>
<p><a title="Screen shot 2009-11-16 at 6.01.39 PM" href="http://www.flickr.com/photos/31697990@N00/4109994015/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2536/4109994015_4facf6d26d.jpg" alt="Screen shot 2009-11-16 at 6.01.39 PM" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>ril3y</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/bus-pirate-v3-basics-on-mac/&title=Buss+Pirate+V3+Basics+on+Mac&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/bus-pirate-v3-basics-on-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Laser Etched PCB&#8217;s</title>
		<link>http://blog.synthetos.com/laser-etched-pcbs/</link>
		<comments>http://blog.synthetos.com/laser-etched-pcbs/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:06:40 +0000</pubDate>
		<dc:creator>Ril3y</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Laser Cutting]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[laser cutting]]></category>

		<guid isPermaLink="false">http://blog.synthetos.com/?p=59</guid>
		<description><![CDATA[I was wondedring how accurate I could do small PCB components with the laser etching process.  Below is a picture of my results and the procedure I used to create it I got a board out of the package.  I painted it with auto spray paint primer.   I then had to do some editing of [...]]]></description>
			<content:encoded><![CDATA[<p>I was wondedring how accurate I could do small PCB components with the laser etching process.  Below is a picture of my results and the procedure I used to create it</p>
<p>I got a board out of the package.  I painted it with auto spray paint primer.   I then had to do some editing of the pdf I got from the reprap.  I had to import the PDF into corel</p>
<p><br class="spacer_" /></p>
<p>draw.  Then I converted it to a bitmap 1200 DPI.  I then was able to invert it.  I dropped my little test logo in and it was ready to go.</p>
<p><br class="spacer_" /></p>
<p><a title="Reprap Opto Stop 1.2 Laser Cut" href="http://www.flickr.com/photos/31697990@N00/4000166398/"><img class="alignleft" src="http://farm4.static.flickr.com/3428/4000166398_25ab885d54.jpg" alt="Reprap Opto Stop 1.2 Laser Cut" width="240" height="160" /></a></p>
<p>I then lazzord the primer covered pcb (single sided copper).  It looked great.  I used the apply the etchant directly on the board and rub off with my hands (rubber gloves) and a sponge.  I did it this way because it uses like 100x less solution.  I was a bit worried about how small the logo was and if it was going to be able to be removed very easy.  But after a few minutes of really scrubbing it was fine.</p>
<p>Once the copper was gone I went back to the computer and changed the lines (lines being the border and screw holes) to hairline which makes them be cut in the epilog driver.  I then re-lazzored the board in cutting mode.  I found that it was hitting the copper line that was the border and the screw holes.  This was not good cause I think it caused the laser beam to split or &#8220;move&#8221; to the sides of the border.  I think this is why its pretty frayed on the edges.  So it did not cut all the way through this go.</p>
<p>I went back to Corel draw again to think of a way to get it to able to be cut out.  Last try I did was (going from memory) I think the design was 1.647 x .7543 ish?  I selected the whole &#8220;image&#8221; and shrunk it to 1.627x.7523&#8243;.  This moved the laser off of the copper border still there.  This worked and it went all the way through.</p>
<p>My next go (in a few hours) is going to be a bit different.  I have setup the artwork to remove the screw holes and the border so the whole thing gets etched (no border and no screw holes).  After I Lazzor this I will place the artwork back in Corel draw.  Remove everything that is not the borders and screw holes.  Change them to hairline so they can be cut and then it should work without the &#8220;fried look&#8221;.  I also want to create some very small circles to place inside of the places where wire holes need to be.</p>
<p>The key thing to remember is I need copper to be removed then I can cut all the way through.  So if I can remove a VERY small circle where the wire hole is then I can cut that very small circle (which will look to our eye as just a hole) and no need for the dremel drill press <img src='http://blog.synthetos.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a question?  Just ask in the  comments and I will do my best to help you out.</p>
<p style="text-align: center;"> </p>
<p><br class="spacer_" /></p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://blog.synthetos.com/laser-etched-pcbs/&title=Laser+Etched+PCB&#8217;s&srcURL=http://blog.synthetos.com" target="_blank" rel="nofollow"><img
src="http://blog.synthetos.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.synthetos.com/laser-etched-pcbs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
