createChar does not work after calling setCursor at least for me, was driving me nuts until I made sure to always do it before moving the cursor. ``` // would not print my character lcd.setCursor(numCols-1, 0); lcd.createChar(1,custombyte); lcd.write((char)1); ```