Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
07/19/06 00:55
Read: times


 
#120534 - Sending a data buffer to LCD
Responding to: ???'s previous message
Thanks for the help, i finally got the LCD to display a string that i wanted.. The next thing im still looking at is to output a string of character from an array buffer. What im trying to say here is :

1. I only managed to write a function so that you can write a string of character directly to LCD simply through this code (for my case) :

LCD_Print("Hello");


2. However, what i did not know is how can i output a buffer data to a LCD such that :

.
.

char LCD_Buffer[8];
.
.
key = <some random 2 digits number>;
sprintf(LCD_Buffer, "%2i", key);
LCDputs(LCD_Buffer);


I need a hint to write the function for LCDputs() so that i can output a data buffer to be displayed on the LCD. Thank you!

List of 8 messages in thread
TopicAuthorDate
Help : LCD Cant Works            01/01/70 00:00      
   Initialization?            01/01/70 00:00      
   Some links            01/01/70 00:00      
   Sending a data buffer to LCD            01/01/70 00:00      
      That Depends            01/01/70 00:00      
         hmm            01/01/70 00:00      
            You're on the right track            01/01/70 00:00      
            some choices            01/01/70 00:00      

Back to Subject List