LCDInfo.com

http://www.lcdinfo.com
It is currently Tue Mar 19, 2024 10:42

All times are UTC + 2 hours




Post new topic Reply to topic  [ 17 posts ]  Go to page Previous  1, 2
Author Message
PostPosted: Fri Feb 17, 2012 6:30 
Offline

Joined: Fri Feb 17, 2012 6:26
Posts: 1
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, :)


Top
 Profile  
 
 Post subject: Re:
PostPosted: Mon Jun 04, 2012 20:16 
Offline

Joined: Mon Jun 04, 2012 20:11
Posts: 1
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!


Last edited by ihanna on Thu Jul 12, 2012 22:32, edited 1 time in total.

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 17 posts ]  Go to page Previous  1, 2

All times are UTC + 2 hours


Who is online

Users browsing this forum: No registered users and 6 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group