Turn the display on/off (quickly)
| 214 | |
| 215 | // Turn the display on/off (quickly) |
| 216 | void LiquidCrystal::noDisplay() { |
| 217 | _displaycontrol &= ~LCD_DISPLAYON; |
| 218 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
| 219 | } |
| 220 | void LiquidCrystal::display() { |
| 221 | _displaycontrol |= LCD_DISPLAYON; |
| 222 | command(LCD_DISPLAYCONTROL | _displaycontrol); |
nothing calls this directly
no outgoing calls
no test coverage detected