This will 'right justify' text from the cursor
| 264 | |
| 265 | // This will 'right justify' text from the cursor |
| 266 | void LiquidCrystal::autoscroll(void) { |
| 267 | _displaymode |= LCD_ENTRYSHIFTINCREMENT; |
| 268 | command(LCD_ENTRYMODESET | _displaymode); |
| 269 | } |
| 270 | |
| 271 | // This will 'left justify' text from the cursor |
| 272 | void LiquidCrystal::noAutoscroll(void) { |
nothing calls this directly
no outgoing calls
no test coverage detected