Timer to LCD display

Hi, I'm controling a stepper motor and at the same time I'm showing in the lcd the position of the motors in millimeters.
I have all code in a loop, and the clock of arduino can't move the motor faster because the lcd catch a lot of time to show the position. Arduino can't control the motor and the lcd at the same time.

There is any way to control the lcd in a timer and the motor in other way? I want to do multitask.

Thanks.

The Arduino can't control the motor and the LCD at the same time but it can control them one after the other so quickly that you will not notice the difference. Have you used the delay() function in your code by any chance, as this stops the Arduino from doing anything else but waiting. There are ways to avoid this.

Post your code here for more advice.

Read this before posting a programming question