<?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>LeafLabs Garden &#187; Topic: Pin 23 and 24 of Maple mini</title>
		<link>http://forums.leaflabs.com/topic.php?id=833</link>
		<description>A place to share, learn, and grow...</description>
		<language>en-US</language>
		<pubDate>Fri, 22 Jan 2016 00:18:24 +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://forums.leaflabs.com/search.php</link>
		</textInput>
		<atom:link href="http://forums.leaflabs.com/rss.php?topic=833" rel="self" type="application/rss+xml" />

		<item>
			<title>Anonymous on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-12749</link>
			<pubDate>Tue, 21 Aug 2012 03:14:24 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">12749@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;I think that it is safe to disregard my comment.  My apology for the thread necromancy.  After building my circuit on the new prototyping board, I have been unable to reproduce the problem.  I suspect that I was getting noise on my data lines.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-12701</link>
			<pubDate>Sun, 19 Aug 2012 21:01:28 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">12701@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Unsure if this is related, however on a Maple r5, I run into problems using a 20x2 VFD when using 4-bit mode with the following:&#60;/p&#62;
&#60;p&#62;RS: 23&#60;br /&#62;
E: 24&#60;br /&#62;
D4-D7: 25,26,27,28&#60;/p&#62;
&#60;p&#62;The display runs quite nicely for a while, then after about 15 minutes or so, I start getting gibberish on the display.  If I move from using pins 23-28 and instead use 25-30, the problem manifests itself within about 10 seconds. The display runs forever without incident off of an Arduino so I am certain that it is not defective.  I am perplexed as to the behavior just by switching pins, but I suspect that there may be a peripheral or option that I need to disable in order to rectify this condition.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kalund on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-6587</link>
			<pubDate>Sun, 25 Sep 2011 08:32:38 +0000</pubDate>
			<dc:creator>kalund</dc:creator>
			<guid isPermaLink="false">6587@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I've just made a small pcb where I've been trying to use the LiquidCrystal library in 4-bit mode with the maple mini, but I can't seem to get it to work, did you ever get it working? - Unfortunatly I can't test 8-bit mode as this would mean redesigning the pcb.&#60;/p&#62;
&#60;p&#62;/Kalund
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbolivar on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-5847</link>
			<pubDate>Tue, 02 Aug 2011 14:29:23 +0000</pubDate>
			<dc:creator>mbolivar</dc:creator>
			<guid isPermaLink="false">5847@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Hey all,&#60;/p&#62;
&#60;p&#62;Back to posting after a while absent!&#60;/p&#62;
&#60;p&#62;I was messing around with this issue today, and the fix is simple: power off the USB peripheral.  You can currently do this with usbPowerOff(), from usb.h.&#60;/p&#62;
&#60;p&#62;Example code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#include &#38;quot;usb.h&#38;quot;

uint8 pins[] = {23, 24, 25};

void setup() {
    SerialUSB.end();
    usbPowerOff();
    for (int i = 0; i &#38;lt; 3; i++) {
        pinMode(pins[i], OUTPUT);
    }
}

void loop() {
    for (int i = 0; i &#38;lt; 3; i++) {
        togglePin(pins[i]);
    }
    delay(50);
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mbolivar on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-5037</link>
			<pubDate>Tue, 07 Jun 2011 11:58:42 +0000</pubDate>
			<dc:creator>mbolivar</dc:creator>
			<guid isPermaLink="false">5037@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Feel free to choose between filing the ticket yourself and posting it here; either way is fine with me.  We get email whenever anything happens on the bug tracker, so it won't get ignored.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Xavier on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-4999</link>
			<pubDate>Mon, 06 Jun 2011 15:22:27 +0000</pubDate>
			<dc:creator>Xavier</dc:creator>
			<guid isPermaLink="false">4999@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Thanks Marti,&#60;br /&#62;
Should we enter bug directly in the bug tracker or do you prefer to do it yourself ?&#60;br /&#62;
Xavier
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbolivar on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-4997</link>
			<pubDate>Mon, 06 Jun 2011 13:59:57 +0000</pubDate>
			<dc:creator>mbolivar</dc:creator>
			<guid isPermaLink="false">4997@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Hi Xavier,&#60;/p&#62;
&#60;p&#62;Re: pins 23 and 24, I've reproduced the issue and filed a ticket:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://code.google.com/p/leaflabs/issues/detail?id=71&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/leaflabs/issues/detail?id=71&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Fixing this bug blocks libmaple 0.0.12.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Xavier on "Pin 23 and 24 of Maple mini"</title>
			<link>http://forums.leaflabs.com/topic.php?id=833#post-4973</link>
			<pubDate>Sat, 04 Jun 2011 17:04:57 +0000</pubDate>
			<dc:creator>Xavier</dc:creator>
			<guid isPermaLink="false">4973@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I just understood why i could not get My LCD (LiquidCrystal) working with my maple mini.&#60;br /&#62;
I used pin 24 among the 10 pins.&#60;/p&#62;
&#60;p&#62;I saw in the doc i had to disable USBSerial to be able to use pins 23 and 24 but adding SerialUSB.end() did not change anything.&#60;/p&#62;
&#60;p&#62;A second problem : i cannot make the LiquidCrystal work in 4 bits mode.&#60;br /&#62;
Simple example :&#60;br /&#62;
&#34;LiquidCrystal      lcd(2,3,4,5,6,7,27,26,25,22);&#34;  Works.&#60;br /&#62;
with the same hardware wiring :&#60;br /&#62;
&#34;LiquidCrystal      lcd(2,3,4,5,6,7);&#34;  do not Work.&#60;/p&#62;
&#60;p&#62;Anyone else noticed that ?&#60;br /&#62;
Thanks for any help,&#60;/p&#62;
&#60;p&#62;Xavier
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
