Description
This function writes text strings to the Pulse Pal oLED display.
Syntax
updateDisplay(string line1, string line2)
Parameters
line1 (A text string to display on the top row of the oLED display. Text must be less than 17 characters in length.)
line2 (An optional text string to display on the bottom row of the oLED display. Text must be less than 17 characters in length.)
Returns
None
Example
// This code sets oLED display line 1 to show "Press" and line 2 to show "Return. . ."
PulsePalObject.updateDisplay("Press", "Return. . .");