Turn on and off the blinking cursor
| 234 | |
| 235 | // Turn on and off the blinking cursor |
| 236 | void LiquidCrystal::noBlink() { |
| 237 | _displaycontrol &= ~LCD_BLINKON; |
| 238 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
| 239 | } |
| 240 | void LiquidCrystal::blink() { |
| 241 | _displaycontrol |= LCD_BLINKON; |
| 242 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
nothing calls this directly
no outgoing calls
no test coverage detected