<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A Flurry of Puzzle Box Activity</title>
	<atom:link href="http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/feed/" rel="self" type="application/rss+xml" />
	<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/</link>
	<description>Arduino wisdom and gems by Mikal Hart</description>
	<lastBuildDate>Thu, 02 Feb 2012 11:22:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Lew</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-8840</link>
		<dc:creator>Lew</dc:creator>
		<pubDate>Mon, 03 Jan 2011 11:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-8840</guid>
		<description>Thanks for the reply.  Since I have been using Arduino version 19 and the latest NewSoftSerial, it sounds like the incompatibility you mentioned has been causing my problems.  I wish I had known that before.

On my project, I could get my code to move the servo like I wanted maybe 50% of the time but it frequently went past the point I &quot;controlled it to&quot;.  I&#039;ll try the older servo library.

After weeks of struggling with the servo code, the thought of an actuator with just an IN or OUT command sounded like something I would have given my arm for.

Thanks for the idea of the box.  It took me three months to build mine.  This time was spent venturing into areas of hardware and software and woodworking that had been completely unfamiliar to me.

I had just started to learn about the Arduino when I came across your description of the Puzzle Box.  My previous simple activity of just lighting an LED immediately got shelved and I jumped into the deep end with this project.

Although at times I would have wanted a more detailed description about how to make the parts work together or the software to work, I had lots of fun stumbling through it all.  The only tragedy was one ATMega328 that got trashed.</description>
		<content:encoded><![CDATA[<p>Thanks for the reply.  Since I have been using Arduino version 19 and the latest NewSoftSerial, it sounds like the incompatibility you mentioned has been causing my problems.  I wish I had known that before.</p>
<p>On my project, I could get my code to move the servo like I wanted maybe 50% of the time but it frequently went past the point I &#8220;controlled it to&#8221;.  I&#8217;ll try the older servo library.</p>
<p>After weeks of struggling with the servo code, the thought of an actuator with just an IN or OUT command sounded like something I would have given my arm for.</p>
<p>Thanks for the idea of the box.  It took me three months to build mine.  This time was spent venturing into areas of hardware and software and woodworking that had been completely unfamiliar to me.</p>
<p>I had just started to learn about the Arduino when I came across your description of the Puzzle Box.  My previous simple activity of just lighting an LED immediately got shelved and I jumped into the deep end with this project.</p>
<p>Although at times I would have wanted a more detailed description about how to make the parts work together or the software to work, I had lots of fun stumbling through it all.  The only tragedy was one ATMega328 that got trashed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikal</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-8781</link>
		<dc:creator>Mikal</dc:creator>
		<pubDate>Sun, 02 Jan 2011 00:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-8781</guid>
		<description>Lew,

All of my designs (so far) have used servo motors.  What you probably saw in the video was a Hitec HS-311 servo attached to a hand-made piston of sorts.  The piston is just a dowel rod inserted into a sleeve I made by drilling a hole through a block of wood.  If you fasten the servo to the end of the dowel with a paperclip or other clasp, you can get that linear motion you describe.

Programming is not much harder than sending a IN or OUT signal.  You have to calculate where to position the servo for &quot;IN&quot; or &quot;OUT&quot; and then just write code like

&lt;code&gt;
servo.write(45); // open latch
servo.write(135); // close latch&lt;/code&gt;

One other thing to note is that the revised Servo library which appeared with Arduino 16+ is incompatible with NewSoftSerial.  I get around this problem rather easily -- I just use the old Servo library.  If your servo &quot;has a mind of its own&quot;, you might try this technique.

Mikal</description>
		<content:encoded><![CDATA[<p>Lew,</p>
<p>All of my designs (so far) have used servo motors.  What you probably saw in the video was a Hitec HS-311 servo attached to a hand-made piston of sorts.  The piston is just a dowel rod inserted into a sleeve I made by drilling a hole through a block of wood.  If you fasten the servo to the end of the dowel with a paperclip or other clasp, you can get that linear motion you describe.</p>
<p>Programming is not much harder than sending a IN or OUT signal.  You have to calculate where to position the servo for &#8220;IN&#8221; or &#8220;OUT&#8221; and then just write code like</p>
<p><code><br />
servo.write(45); // open latch<br />
servo.write(135); // close latch</code></p>
<p>One other thing to note is that the revised Servo library which appeared with Arduino 16+ is incompatible with NewSoftSerial.  I get around this problem rather easily &#8212; I just use the old Servo library.  If your servo &#8220;has a mind of its own&#8221;, you might try this technique.</p>
<p>Mikal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lew</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-8716</link>
		<dc:creator>Lew</dc:creator>
		<pubDate>Fri, 31 Dec 2010 17:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-8716</guid>
		<description>I noticed on the YouTube video that you used a piston actuator rather than a servo to lock the box.

I have struggled with the originally recommended servo but it seems to have a mind of its own regarding where it should turn to.  I already only power it if I am ready to control it and store the last controlled position in EEPROM.

A linear actuator, especially if we only have to send an IN or OUT signal to it would make life a lot simpler.

Can you give the make and model of the linear servo you used in the YouTube video.</description>
		<content:encoded><![CDATA[<p>I noticed on the YouTube video that you used a piston actuator rather than a servo to lock the box.</p>
<p>I have struggled with the originally recommended servo but it seems to have a mind of its own regarding where it should turn to.  I already only power it if I am ready to control it and store the last controlled position in EEPROM.</p>
<p>A linear actuator, especially if we only have to send an IN or OUT signal to it would make life a lot simpler.</p>
<p>Can you give the make and model of the linear servo you used in the YouTube video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-8066</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 17 Dec 2010 18:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-8066</guid>
		<description>Just had to have a shot at this myself!  See

  http://www.yorkshiregeocaching.co.uk/index.php/component/option,com_kunena/Itemid,94/catid,1/func,view/id,12850/</description>
		<content:encoded><![CDATA[<p>Just had to have a shot at this myself!  See</p>
<p>  <a href="http://www.yorkshiregeocaching.co.uk/index.php/component/option,com_kunena/Itemid,94/catid,1/func,view/id,12850/" rel="nofollow">http://www.yorkshiregeocaching.co.uk/index.php/component/option,com_kunena/Itemid,94/catid,1/func,view/id,12850/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-5953</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 27 Oct 2010 20:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-5953</guid>
		<description>Is there any chance of there being a DIY kit for this? A PCB and parts or perhaps just the PCB? I know in one post you said you dont want to see plastic copies out there but I want to make one of these from ultra high molecular weight polyethylene. I think it would make a cool looking box.</description>
		<content:encoded><![CDATA[<p>Is there any chance of there being a DIY kit for this? A PCB and parts or perhaps just the PCB? I know in one post you said you dont want to see plastic copies out there but I want to make one of these from ultra high molecular weight polyethylene. I think it would make a cool looking box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Jenkins</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-5749</link>
		<dc:creator>Dave Jenkins</dc:creator>
		<pubDate>Fri, 22 Oct 2010 05:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-5749</guid>
		<description>This is such an awesome project. I keep coming back to check for updates once a month. 
In regards to others making their own, has anyone seen the one that a guy did with a Parallax Propeller? It&#039;s a really nice job also.
http://forums.parallax.com/showthread.php?t=118830</description>
		<content:encoded><![CDATA[<p>This is such an awesome project. I keep coming back to check for updates once a month.<br />
In regards to others making their own, has anyone seen the one that a guy did with a Parallax Propeller? It&#8217;s a really nice job also.<br />
<a href="http://forums.parallax.com/showthread.php?t=118830" rel="nofollow">http://forums.parallax.com/showthread.php?t=118830</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-5568</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Sat, 16 Oct 2010 15:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-5568</guid>
		<description>Mikal

If you need any help building boxes let me know... I am an Arduino developer.

Have a great day.

Jim</description>
		<content:encoded><![CDATA[<p>Mikal</p>
<p>If you need any help building boxes let me know&#8230; I am an Arduino developer.</p>
<p>Have a great day.</p>
<p>Jim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikal</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-5183</link>
		<dc:creator>Mikal</dc:creator>
		<pubDate>Fri, 01 Oct 2010 05:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-5183</guid>
		<description>Hi Brian.

I do hope someday soon to have a snippet of RG sample code to share.  But I have to say that there are a number of people who started out by asking for schematics and code who went on to craft their own device anyway.  Many of these report that an already rich project became richer and deeply satisfying by virtue of having been built and &quot;invented&quot; on their own.

Start off at the &quot;mothership&quot;: http://arduino.cc.  Check out tutorials also on ladyada&#039;s great site: http://www.ladyada.net/learn/arduino/.

Keep in touch!

Mikal</description>
		<content:encoded><![CDATA[<p>Hi Brian.</p>
<p>I do hope someday soon to have a snippet of RG sample code to share.  But I have to say that there are a number of people who started out by asking for schematics and code who went on to craft their own device anyway.  Many of these report that an already rich project became richer and deeply satisfying by virtue of having been built and &#8220;invented&#8221; on their own.</p>
<p>Start off at the &#8220;mothership&#8221;: <a href="http://arduino.cc" rel="nofollow">http://arduino.cc</a>.  Check out tutorials also on ladyada&#8217;s great site: <a href="http://www.ladyada.net/learn/arduino/" rel="nofollow">http://www.ladyada.net/learn/arduino/</a>.</p>
<p>Keep in touch!</p>
<p>Mikal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-5003</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 23 Sep 2010 00:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-5003</guid>
		<description>Hi Mike! I love your boxes and just finished reading the stories! I haven&#039;t read all the comments, but I was wondering if there are plans for a kit or at least release of the code and schematics to build a custom box of our own! I love Geocaching and would really like to actually hand build this. If none of that is or will be available, can you point me towards the best place to learn the coding I would need and give me a few pointers?

Thanks,

Brian
Fellow Geocaching Enthusiast and total Geek.</description>
		<content:encoded><![CDATA[<p>Hi Mike! I love your boxes and just finished reading the stories! I haven&#8217;t read all the comments, but I was wondering if there are plans for a kit or at least release of the code and schematics to build a custom box of our own! I love Geocaching and would really like to actually hand build this. If none of that is or will be available, can you point me towards the best place to learn the coding I would need and give me a few pointers?</p>
<p>Thanks,</p>
<p>Brian<br />
Fellow Geocaching Enthusiast and total Geek.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikal</title>
		<link>http://arduiniana.org/2010/07/a-flurry-of-puzzle-box-activity/comment-page-1/#comment-4983</link>
		<dc:creator>Mikal</dc:creator>
		<pubDate>Wed, 22 Sep 2010 01:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://arduiniana.org/?p=690#comment-4983</guid>
		<description>Oh hey, thanks, Maria.

What we&#039;re trying to do is encourage people to talk about the idea of the Reverse Geocache (tm) and experiment with building their own devices.  As you point out, there are a number of people who have been so captivated by the idea that they have created their own variations on the idea, some more successfully than others.  This is nothing but good.  

On the commercial side, we continue to work to refine and improve our designs and reduce costs.  My goal is to make it possible to any group or person who really wants to experience the magic of a Reverse Geocache quest to do so with one of our boxes.  And to answer your question, yes, we have filed a patent application and are trademarking the term &quot;Reverse Geocache&quot;.

Thanks for the kind words.

Mikal</description>
		<content:encoded><![CDATA[<p>Oh hey, thanks, Maria.</p>
<p>What we&#8217;re trying to do is encourage people to talk about the idea of the Reverse Geocache &#8482; and experiment with building their own devices.  As you point out, there are a number of people who have been so captivated by the idea that they have created their own variations on the idea, some more successfully than others.  This is nothing but good.  </p>
<p>On the commercial side, we continue to work to refine and improve our designs and reduce costs.  My goal is to make it possible to any group or person who really wants to experience the magic of a Reverse Geocache quest to do so with one of our boxes.  And to answer your question, yes, we have filed a patent application and are trademarking the term &#8220;Reverse Geocache&#8221;.</p>
<p>Thanks for the kind words.</p>
<p>Mikal</p>
]]></content:encoded>
	</item>
</channel>
</rss>

