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

Method noCursor

examples/AllProtocolsOnLCD/LiquidCrystal.cpp:226–229  ·  view source on GitHub ↗

Turns the underline cursor on/off

Source from the content-addressed store, hash-verified

224
225// Turns the underline cursor on/off
226void LiquidCrystal::noCursor() {
227 _displaycontrol &= ~LCD_CURSORON;
228 command(LCD_DISPLAYCONTROL | _displaycontrol);
229}
230void LiquidCrystal::cursor() {
231 _displaycontrol |= LCD_CURSORON;
232 command(LCD_DISPLAYCONTROL | _displaycontrol);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected