<?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: PString</title>
	<atom:link href="http://arduiniana.org/libraries/pstring/feed/" rel="self" type="application/rss+xml" />
	<link>http://arduiniana.org</link>
	<description>Arduino software jewellery and wisdom by Mikal Hart</description>
	<lastBuildDate>Fri, 03 Sep 2010 07:40:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Arduino net connected clock tells weather not time</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-3256</link>
		<dc:creator>Arduino net connected clock tells weather not time</dc:creator>
		<pubDate>Wed, 30 Jun 2010 22:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-3256</guid>
		<description>[...] third party libraries were used; PString to handle parsing the incoming website, Flash for memory management, and Streaming for easier [...]</description>
		<content:encoded><![CDATA[<p>[...] third party libraries were used; PString to handle parsing the incoming website, Flash for memory management, and Streaming for easier [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Starke</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-1951</link>
		<dc:creator>Jonathan Starke</dc:creator>
		<pubDate>Tue, 02 Mar 2010 14:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-1951</guid>
		<description>Thank you thank you, you saved me a lot of frustration
Thnx
Jonathan</description>
		<content:encoded><![CDATA[<p>Thank you thank you, you saved me a lot of frustration<br />
Thnx<br />
Jonathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-740</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 19 Nov 2009 18:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-740</guid>
		<description>thx a lot... this is not the full code, I just simplified it!
i&#039;m using your library 2 make a &quot;sensor package&quot; 4 XBee transmission...
I miss calculated the &quot;l&quot; sry bout that!
it&#039;s possibly some reference problem! i&#039;ll try 2 figure it out!
BTW Great job on the library!</description>
		<content:encoded><![CDATA[<p>thx a lot&#8230; this is not the full code, I just simplified it!<br />
i&#8217;m using your library 2 make a &#8220;sensor package&#8221; 4 XBee transmission&#8230;<br />
I miss calculated the &#8220;l&#8221; sry bout that!<br />
it&#8217;s possibly some reference problem! i&#8217;ll try 2 figure it out!<br />
BTW Great job on the library!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikal</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-739</link>
		<dc:creator>Mikal</dc:creator>
		<pubDate>Thu, 19 Nov 2009 18:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-739</guid>
		<description>Hmmm... on my Arduino, using 0017, this prints 



&lt;blockquote&gt;Faip4Faip4&lt;/blockquote&gt;



repeatedly, which is exactly what I would expect.  If yours prints &quot;Fail0&quot;, I don&#039;t understand where the &#039;0&#039; comes from -- or the &#039;l&#039; for that matter! :)


Mikal</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; on my Arduino, using 0017, this prints </p>
<blockquote><p>Faip4Faip4</p></blockquote>
<p>repeatedly, which is exactly what I would expect.  If yours prints &#8220;Fail0&#8243;, I don&#8217;t understand where the &#8216;0&#8242; comes from &#8212; or the &#8216;l&#8217; for that matter! <img src='http://arduiniana.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mikal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-738</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 19 Nov 2009 18:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-738</guid>
		<description>Hi ... I was testing your library and the following code fails in one part!

----------
#include 

char localBuffer[25];
PString locBuf(localBuffer, sizeof(localBuffer));

void setup() {
  Serial.begin(9600);
  locBuf.begin();
}

void loop() {
  locBuf = byte(70);    // F
  locBuf += byte(97);   // a
  locBuf += byte(105);  // i
  locBuf += byte(112);  // l
  Serial.print(locBuf); // prints out &quot;Fail&quot; OK
  Serial.print(locBuf.length()); // prints 0 -&gt; FAIL shoud be 4
}
---------

Do you have any idea why?

thx!</description>
		<content:encoded><![CDATA[<p>Hi &#8230; I was testing your library and the following code fails in one part!</p>
<p>&#8212;&#8212;&#8212;-<br />
#include </p>
<p>char localBuffer[25];<br />
PString locBuf(localBuffer, sizeof(localBuffer));</p>
<p>void setup() {<br />
  Serial.begin(9600);<br />
  locBuf.begin();<br />
}</p>
<p>void loop() {<br />
  locBuf = byte(70);    // F<br />
  locBuf += byte(97);   // a<br />
  locBuf += byte(105);  // i<br />
  locBuf += byte(112);  // l<br />
  Serial.print(locBuf); // prints out &#8220;Fail&#8221; OK<br />
  Serial.print(locBuf.length()); // prints 0 -&gt; FAIL shoud be 4<br />
}<br />
&#8212;&#8212;&#8212;</p>
<p>Do you have any idea why?</p>
<p>thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ka1kjz.com &#187; Twittering Arduino Completed</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-234</link>
		<dc:creator>ka1kjz.com &#187; Twittering Arduino Completed</dc:creator>
		<pubDate>Sun, 26 Jul 2009 04:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-234</guid>
		<description>[...] actual text for the tweet, the Arduino has very limited string manipulation functions.  But the PString library by Mikal Hart proved to be just what I [...]</description>
		<content:encoded><![CDATA[<p>[...] actual text for the tweet, the Arduino has very limited string manipulation functions.  But the PString library by Mikal Hart proved to be just what I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Introducing PStrings &#171; Arduiniana</title>
		<link>http://arduiniana.org/libraries/pstring/comment-page-1/#comment-11</link>
		<dc:creator>Introducing PStrings &#171; Arduiniana</dc:creator>
		<pubDate>Wed, 18 Feb 2009 14:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://sundial.org/arduino/?page_id=154#comment-11</guid>
		<description>[...] Check out the new PString class. [...]</description>
		<content:encoded><![CDATA[<p>[...] Check out the new PString class. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
