LCD on Port C

Hello!
I'm new here and I have a question.

I have a board made ??with a AtMega 328
My display is permanently connected to Port C..
I would like to write the program with the Arduino IDE and transmitted, would the output for the LCD, which is in the Liquid Cristal fix written to Port B Port C put on.
Have tried the Librarie. H. Ccp to c rewrite, but unfortunately that alone seems not to be enough.
Can anyone one of you give a hint what else I have to do?

lg Michael

Welcome to the forum.

I don't understand your question.
The Arduino library can use most pins in any order.

The Arduino library can use most pins in any order.
http://arduino.cc/en/Tutorial/LiquidCrystal

Unfortunately that tutorial does not really describe how to use different pins. Instead it implies that you must use the pins that they are using by stating: "To wire your LCD screen to your Arduino, connect the following pins: ...."

There is a somewhat more complete description here: LiquidCrystal - Arduino Reference.

But the really simple way to describe what to do can be accomplished with a simple comment.

//LiquidCrystal lcd(RS, E, D4, D5, D6, D7);
LiquidCrystal lcd(7, 8, 9, 10, 11, 12);      // put your pin numbers here

Don