- lcd.putstr("Text goes here!") - Send a string of chars to the display IMPORTANT: Use this for printing a variable: lcd.putstr(str(Variable)) [Turns variable into string]
- lcd.show_cursor() / lcd.hide_cursor() - Show / Hide the cursor of the lcd (White bar)
- lcd.blink_cursor_on() / lcd.blink_cursor_off() - Turn on / Off the blinking cursor upon printing
- lcd.backlight_on() / lcd.backlight_off() - Turn on / Off backlight of the LCD (Controlled by a small transistor on the backpack)
- lcd.display_on() / lcd.display_off() - Turn on / Off the display (Not backlight but the entire chip)
- lcd.clear() - Clear all chars or anything written to the display
- lcd.putstr("Text goes here!") - Send a string of chars to the display IMPORTANT: Use this for printing a variable: lcd.putstr(str(Variable)) [Turns variable into string]
- lcd.show_cursor() / lcd.hide_cursor() - Show / Hide the cursor of the lcd (White bar)
- lcd.blink_cursor_on() / lcd.blink_cursor_off() - Turn on / Off the blinking cursor upon printing
- lcd.backlight_on() / lcd.backlight_off() - Turn on / Off backlight of the LCD (Controlled by a small transistor on the backpack)
- lcd.display_on() / lcd.display_off() - Turn on / Off the display (Not backlight but the entire chip)
- lcd.clear() - Clear all chars or anything written to the display