Turns the underline cursor on/off
| 224 | |
| 225 | // Turns the underline cursor on/off |
| 226 | void LiquidCrystal::noCursor() { |
| 227 | _displaycontrol &= ~LCD_CURSORON; |
| 228 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
| 229 | } |
| 230 | void LiquidCrystal::cursor() { |
| 231 | _displaycontrol |= LCD_CURSORON; |
| 232 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
nothing calls this directly
no outgoing calls
no test coverage detected