Seeeduino LCD - Project Showcase - Netduino Forums
   
Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.
Photo

Seeeduino LCD


  • Please log in to reply
3 replies to this topic

#1 Eric Burdo

Eric Burdo

    Advanced Member

  • Members
  • PipPipPip
  • 130 posts

Posted 06 September 2010 - 08:10 PM

Took me awhile, but I finally found the right combination to make the Netduino control the Seeeduino 16x2 LCD panel..

Full details are here:

Brick Labs - Netduino and a 16x2 LCD

Posted Image
~ Eric D. Burdo ~ http://brick-labs.com/

Today LED's, tomorrow, the world!!! Well, OK, maybe servos.

#2 dwfunk4475

dwfunk4475

    New Member

  • Members
  • Pip
  • 3 posts

Posted 02 May 2012 - 01:40 AM

Took me awhile, but I finally found the right combination to make the Netduino control the Seeeduino 16x2 LCD panel..

Full details are here:

Brick Labs - Netduino and a 16x2 LCD

Posted Image



The Brick Labs link is no longer valid. <frown>



-david

#3 neslekkim

neslekkim

    Advanced Member

  • Members
  • PipPipPip
  • 350 posts
  • LocationOslo, Norway

Posted 02 May 2012 - 04:52 AM

The Brick Labs link is no longer valid. <frown>


It seems like its only the front page that works now, none of the navigational links on the page like category, tags etc.
too bad.

--
Asbjørn


#4 KiwiDev

KiwiDev

    Advanced Member

  • Members
  • PipPipPip
  • 100 posts
  • LocationNew Zealand

Posted 24 June 2012 - 02:51 AM

Hi,

Seen as the links are broken, settings for Seeed LCD display plugged into BUS1

public static void Main()
   {
   var lcdProvider = new GpioLcdTransferProvider(Pins.GPIO_PIN_D2, // RS
                                        Pins.GPIO_PIN_D3, // ENABLE
                                        Pins.GPIO_PIN_D4,  
                                        Pins.GPIO_PIN_D5,  
                                        Pins.GPIO_PIN_D6,  
                                        Pins.GPIO_PIN_D7,
                                        Pins.GPIO_PIN_D8); 

   // create the LCD interface        
   var lcd = new Lcd(lcdProvider);         

   // set up the LCD's number of columns and rows:         
   lcd.Begin(16, 2);

   int i = 0;

   // print a message to the LCD.        
   lcd.Write("Hello Netduino!");         
   while (true)        
   {            
      lcd.SetCursorPosition(0, 1);

      lcd.Write(i.ToString()) ;
      i = i + 1;
      Thread.Sleep(100);        
   }    
}





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.