LCDInfo.com
http://forum.lcdinfo.com/

Need info on LM15SGFNZ07 LCD module
http://forum.lcdinfo.com/viewtopic.php?f=6&t=1797
Page 2 of 2

Author:  ipank [ Fri Feb 17, 2012 6:30 ]
Post subject:  Re: Need info on LM15SGFNZ07 LCD module

Maybe you can try this

Start with a sketch that does simple Morse code:
int pin = 13;

void setup()
{
pinMode(pin, OUTPUT);
}

void loop()
{
dot(); dot(); dot();
dash(); dash(); dash();
dot(); dot(); dot();
delay(3000);
}

void dot()
{
digitalWrite(pin, HIGH);
delay(250);
digitalWrite(pin, LOW);
delay(250);
}

void dash()
{
digitalWrite(pin, HIGH);
delay(1000);
digitalWrite(pin, LOW);
delay(250);
}

I find it when I googling, :)

Author:  ihanna [ Mon Jun 04, 2012 20:16 ]
Post subject:  Re:

gvi70000 wrote:
can anybody guide me to build a library for arduino for this lcd? Thanks to all the nice people on this site for helping.



I also badly need a guide on how to build a library for arduino in that lcd. Hope someone answer. I appreciate the help. Thanks in advance!

Page 2 of 2 All times are UTC + 2 hours
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/