analog in to 4 bit LCD driver

My 2 playing with 4 bits LCD...

I always use LCD4Bits library...but i build it with a new LCD WH1602, and do not work...
in the Lib note this:

// ########## pin assignment ##########
int RS = 12; // Register Select
int RW = 11; // Read/Write
int En = 2; // Enable

//DB should be an unseparated group of pins - because of lazy coding in push_nibble()
int DB[] = {7, 8, 9, 10}; // DB4 .. DB7

That on the default lib, my Lib:
// ########## pin assignment ##########
int RS = 3; // Register Select
int RW = 11; // Read/Write
int En = 2; // Enable

//DB should be an unseparated group of pins - because of lazy coding in push_nibble()
int DB[] = {8, 5, 7, 6}; // DB4 .. DB7 :o

So this is not working... could be the pin assignment?

Best Regards!
Frank