MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / noDisplay

Method noDisplay

examples/AllProtocolsOnLCD/LiquidCrystal.cpp:216–219  ·  view source on GitHub ↗

Turn the display on/off (quickly)

Source from the content-addressed store, hash-verified

214
215// Turn the display on/off (quickly)
216void LiquidCrystal::noDisplay() {
217 _displaycontrol &= ~LCD_DISPLAYON;
218 command(LCD_DISPLAYCONTROL | _displaycontrol);
219}
220void LiquidCrystal::display() {
221 _displaycontrol |= LCD_DISPLAYON;
222 command(LCD_DISPLAYCONTROL | _displaycontrol);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected