This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Displaying character.

I am a beginner to C language... I have alreaady initialized the LCD in my code...How do i display a message("HELLO" eg.) to LCD? I want to use it in function void but i do not know where to start...I want to make it simple if possible...There are samples that i found but the samples are complicated...

Parents
  • There are no function void(), and there never will be. At least not in the C language.

    If the examples are a bit complicated, then maybe they need to be a bit complicated.

    Your post does not contain any information that can help anyone answer your question. But if you have managed to initialize your display, then it should be quite easy to switch from sending commands to it to instead send data to it.

    Even if the example programs may look complicated, it should be quite easy to notice how they separate between sending data and commands. But then, that information is very well described in the datasheet for the display.

Reply
  • There are no function void(), and there never will be. At least not in the C language.

    If the examples are a bit complicated, then maybe they need to be a bit complicated.

    Your post does not contain any information that can help anyone answer your question. But if you have managed to initialize your display, then it should be quite easy to switch from sending commands to it to instead send data to it.

    Even if the example programs may look complicated, it should be quite easy to notice how they separate between sending data and commands. But then, that information is very well described in the datasheet for the display.

Children