Description Display the LCD cursor: an underscore (line) at the position to which the next character will be written. Syntax lcd.cursor() Parameters lcd: a variable of type LiquidCrystal Example - cursor() and noCursor() from the Arduino Tutorial See also - noCursor() Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Prints text to the LCD. Syntax lcd.print(data) lcd.print(data, BASE) Parameters lcd: a variable of type LiquidCrystal data: the data to print (char, byte, int, long, or string) BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal […]
Description Write a character to the LCD. Syntax lcd.write(data) Parameters lcd: a variable of type LiquidCrystal data: the character to write to the display Returns byte (write() will return the number of bytes written, though reading that number is optional) Example Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Position the LCD cursor; that is, set the location at which subsequent text written to the LCD will be displayed. Syntax lcd.setCursor(col, row) Parameters lcd: a variable of type LiquidCrystal col: the column at which to position the cursor (with 0 being the first column) row: the row at which to position the cursor […]
Description Positions the cursor in the upper-left of the LCD. That is, use that location in outputting subsequent text to the display. To also clear the display, use the clear() function instead. Syntax lcd.home() Parameters lcd: a variable of type LiquidCrystal Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Clears the LCD screen and positions the cursor in the upper-left corner. Syntax lcd.clear() Parameters lcd: a variable of type LiquidCrystal Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released […]
Description Initializes the interface to the LCD screen, and specifies the dimensions (width and height) of the display. begin() needs to be called before any other LCD library commands. Syntax lcd.begin(cols, rows) Parameters lcd: a variable of type LiquidCrystal cols: the number of columns that the display has rows: the number of rows that the […]
Description Creates a variable of type LiquidCrystal. The display can be controlled using 4 or 8 data lines. If the former, omit the pin numbers for d0 to d3 and leave those lines unconnected. The RW pin can be tied to ground instead of connected to a pin on the 86Duino; if so, omit it […]
Description Checks for the presence of a UDP packet, and reports the size. parsePacket() must be called before reading the buffer with Udp.read(). Syntax Udp.parsePacket(); Parameters None Returns int: the size of a received UDP packet Example Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is […]
Description Gets the port of the remote UDP connection. This function must be called after UDP.parsePacket(). Syntax Udp.remotePort(); Parameters None Returns int : the port of the UDP connection to a remote host Example Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a […]