<?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; Topic: There&#039;s nothing here?</title>
		<link>http://forum.slashdev.ca/topic/2</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:56:20 +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/topic/2" rel="self" type="application/rss+xml" />

		<item>
			<title>jiggak on "There&#039;s nothing here?"</title>
			<link>http://forum.slashdev.ca/topic/2#post-3</link>
			<pubDate>Sun, 31 Jan 2010 23:24:25 +0000</pubDate>
			<dc:creator>jiggak</dc:creator>
			<guid isPermaLink="false">3@http://forum.slashdev.ca/</guid>
			<description>&#60;p&#62;First let me apologize for not replying sooner.  I just setup this forum and have not yet figured out how to get emails sent to me when someone posts!&#60;/p&#62;
&#60;p&#62;I think your problem is in the Lcd constructor, try this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#include &#38;lt;Lcd.h&#38;gt;

// LCD module is 16 columns wide, 4 pin mode, 2 lines
Lcd lcd = Lcd(16, FUNCTION_4BIT &#124; FUNCTION_2LINE);

void setup()
{
   // for the sake of demonstration change pin assignment
   lcd.set_ctrl_pins(CTRLPINS(1,2,3)); // RS-&#38;gt;1, RW-&#38;gt;2, E-&#38;gt;3
   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
   lcd.setup(); // setup arduino and initialize LCD
}

void loop()
{
   lcd.home();
   lcd.print(&#38;quot;Line 1&#38;quot;);
   lcd.move_to(1, 2);
   lcd.print(&#38;quot;Line 2&#38;quot;);
}&#60;/code&#62;&#60;/pre&#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>

