16x2 SerLCD + Pi Pico + Move Cursor Command

Pico talks just fine to the display. I can display text and clear it just fine. Apparently I am missing something really obvious because I cannot figure out the command sequence to move the cursor. I tried 254 in hex with \xFE too. Is there a similar ‘\x’ I should be preceding with?

I’ve tried several permutations of the below:

i2c.writeto(114, 254)

i2c.writeto(114, ‘254’)

Then, once that commend is sent, how is the command to actually move the cursor formatted? Is is?

i2C.writeto(114, 128 + 64 + 9)