Edit library to drive a 1 x 16 digits LCD Display with KS0066F00

Dear all,
I've some LCD display, 1 raw 16 column, that I would like to use for create my project.

Unfortunately I'm able to write on the first 8 digit area moving the cursor on the first digit at the first column

lcd.begin(1,2);
lcd.setCursor(0,0)

If I want to write on the second part of display I have to move the cursor to the 1 dicit at the second column

lcd.begin(1,2);
lcd.setCursor(0,0)

In this way is very difficult to diplay a message over 8 characters and I can't use the scroll function

Dear all,
I've some LCD display, 1 row 16 column, that I would like to use for create my project.

Unfortunately I'm able to write on the first 8 digit area moving the cursor on the first digit at the first column

lcd.begin(1,2);
lcd.setCursor(0,0)

If I want to write on the second part of display area I have to move the cursor to the 1 digit at the second column

lcd.begin(1,2);
lcd.setCursor(0,1)

In this way is very difficult to display a message over 8 characters and I can't use the scroll function and other similar commands

Could someone help me?

Thanks in advance for your time.

Max