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

Method noBlink

examples/AllProtocolsOnLCD/LiquidCrystal.cpp:236–239  ·  view source on GitHub ↗

Turn on and off the blinking cursor

Source from the content-addressed store, hash-verified

234
235// Turn on and off the blinking cursor
236void LiquidCrystal::noBlink() {
237 _displaycontrol &= ~LCD_BLINKON;
238 command(LCD_DISPLAYCONTROL | _displaycontrol);
239}
240void LiquidCrystal::blink() {
241 _displaycontrol |= LCD_BLINKON;
242 command(LCD_DISPLAYCONTROL | _displaycontrol);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected