<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>Slashdev Support Forum &#187; Forum: Arduino LCD Library - Recent Topics</title>
		<link>http://forum.slashdev.ca/forum/1</link>
		<description>A place to ask questions about projects and posts on the Slashdev blog.</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Feb 2012 23:59:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://forum.slashdev.ca/search.php</link>
		</textInput>
		<atom:link href="http://forum.slashdev.ca/rss/forum/1/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>socaldt on "Scrolling text"</title>
			<link>http://forum.slashdev.ca/topic/38#post-95</link>
			<pubDate>Sat, 17 Sep 2011 07:42:52 +0000</pubDate>
			<dc:creator>socaldt</dc:creator>
			<guid isPermaLink="false">95@http://forum.slashdev.ca/</guid>
			<description>&#60;p&#62;Hey Jiggak,&#60;/p&#62;
&#60;p&#62;I know you have stop updating your library, but hopefully you still check this forum.&#60;br /&#62;
I found your library and it works for me.&#60;br /&#62;
However, I tried to scroll my text but no luck.&#60;br /&#62;
It scrolls but it appears pixelated.&#60;br /&#62;
If I do not use any delays, the the message would just flash by the LCD.&#60;br /&#62;
It looks like it is not fast enough. I can see the old character before it gets update with the new one.&#60;/p&#62;
&#60;p&#62;Has this happened before? I tried it on both of my LCD but it is the same.&#60;/p&#62;
&#60;p&#62;I used lcd.entry_mode(ENTRY_SHIFT); and tried to display it using lcd.print(msg);. I also tried for-looping it, but neither mode can display the message without distorting. &#60;/p&#62;
&#60;p&#62;Any suggestions would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>maujabur on "arduino 0018 and keywords.txt"</title>
			<link>http://forum.slashdev.ca/topic/5#post-13</link>
			<pubDate>Tue, 15 Jun 2010 13:19:24 +0000</pubDate>
			<dc:creator>maujabur</dc:creator>
			<guid isPermaLink="false">13@http://forum.slashdev.ca/</guid>
			<description>&#60;p&#62;I've tried to use your library with arduino 0018 on a PC but it seems to be missing a file named keywords.txt. This way it is not regocnized as a library&#60;br /&#62;
Am I doing something wrong?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>evil_md on "Custom Characters"</title>
			<link>http://forum.slashdev.ca/topic/3#post-4</link>
			<pubDate>Tue, 09 Feb 2010 18:00:21 +0000</pubDate>
			<dc:creator>evil_md</dc:creator>
			<guid isPermaLink="false">4@http://forum.slashdev.ca/</guid>
			<description>&#60;p&#62;I'm completely new to the world of arduino, but I've been running your library and its been working great for me. However I'm not completely clear on the custom character aspect, so was hoping you would be able to give me a short example outlining the definition of a character, and then the proceedure for printing the character to the LCD.&#60;/p&#62;
&#60;p&#62;Cheers for any help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jkittle99 on "There&#039;s nothing here?"</title>
			<link>http://forum.slashdev.ca/topic/2#post-2</link>
			<pubDate>Thu, 07 Jan 2010 23:15:37 +0000</pubDate>
			<dc:creator>jkittle99</dc:creator>
			<guid isPermaLink="false">2@http://forum.slashdev.ca/</guid>
			<description>&#60;p&#62;Seriously?  &#60;/p&#62;
&#60;p&#62;Ok so let me be the first, then.  I'm using Arduino 17 on a mac.  The library works fine.&#60;/p&#62;
&#60;p&#62;I've wired up a 2x16 Winstar WH1602B display (it has an RGB backlight - mega cool) and I'm running in 4 bit mode.   Hello world works fine on line 1, but nothing goes to line 2.   Why is &#34;move_to&#34; not highlighted?  &#60;/p&#62;
&#60;p&#62;My complete code:&#60;/p&#62;
&#60;p&#62;/*&#60;br /&#62;
 * Simple hello world program in 4 pin mode.&#60;br /&#62;
 */&#60;br /&#62;
#include &#38;lt;Lcd.h&#38;gt;&#60;/p&#62;
&#60;p&#62;// LCD module is 16 columns wide, use 4 pin mode&#60;br /&#62;
Lcd lcd = Lcd(16, FUNCTION_4BIT);&#60;/p&#62;
&#60;p&#62;char msg[] = &#34;Hello, World!&#34;;&#60;/p&#62;
&#60;p&#62;void setup()&#60;br /&#62;
{&#60;br /&#62;
  // for the sake of demonstration change pin assignment&#60;br /&#62;
  lcd.set_ctrl_pins(CTRLPINS(1,2,3)); // RS-&#38;gt;1, RW-&#38;gt;2, E-&#38;gt;3&#60;br /&#62;
  lcd.set_data_pins(_4PINS(4,5,6,7)); // D4-&#38;gt;4, D5-&#38;gt;5, D6-&#38;gt;6, D7-&#38;gt;7&#60;/p&#62;
&#60;p&#62;  lcd.setup();  // setup arduino and initialize LCD&#60;br /&#62;
  lcd.move_to(1,2);&#60;br /&#62;
  lcd.print(&#34;Line 2&#34;);&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;void loop()&#60;br /&#62;
{&#60;br /&#62;
  lcd.home();     // return cursor to home possition&#60;br /&#62;
  lcd.print(msg); // print the ever so familiar message&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

