101 int16_t
begin(uint8_t cols = 80, uint8_t rows = 1)
111 int16_t result =
_sw.sendPacket(tx);
136 int16_t
clear(
bool delayAfterClear =
true)
156 int16_t
home(
bool delayAfterHome =
true)
184 return command(0x80 + _offsets[row] + col);
202 return _sw.sendPacket(tx);
220 return _sw.sendPacket(tx);
239 return _sw.sendPacket(tx);
258 return _sw.sendPacket(tx);
278 return _sw.sendPacket(tx);
297 return _sw.sendPacket(tx);
340 return _sw.sendPacket(tx);
359 return _sw.sendPacket(tx);
380 return _sw.sendPacket(tx);
400 return _sw.sendPacket(tx);
424 if (
_sw.sendPacket(tx) >= 0)
442 size_t write(uint8_t* buffer,
size_t count)
445 uint32_t startTime = millis();
446 while (sent < count - 5)
457 if (
_sw.sendPacket(tx) < 0)
463 while (sent < count - 1)
474 if (
_sw.sendPacket(tx) < 0)
491 if (
_sw.sendPacket(tx) >= 0)
496 uint32_t endTime = millis();
514 int16_t result =
command((uint8_t)(0x40 | (index << 3)));
519 for (
int i = 0; i < 8; ++i)
521 result =(int16_t)
write(bitmap[i]);
545 int16_t
setRowOffsets(uint8_t row1, uint8_t row2, uint8_t row3, uint8_t row4)
556 int16_t result =
_sw.sendPacket(tx);
if (result < 0) {
return result; };
557 tx[3] = 1; tx[4] = row2;
558 result =
_sw.sendPacket(tx);
if (result < 0) {
return result; };
559 tx[3] = 2; tx[4] = row3;
560 result =
_sw.sendPacket(tx);
if (result < 0) {
return result; };
561 tx[3] = 3; tx[4] = row4;
562 result =
_sw.sendPacket(tx);
if (result < 0) {
return result; };
584 return _sw.sendPacket(tx);
623 (byte)(bufferIndex & 0xFF),
624 (byte)(bufferIndex >>8),
630 return _sw.sendPacket(tx);
658 return _sw.sendPacket(tx);
671 uint8_t _columns = 40;
672 uint8_t _offsets[8] = { 0,64,20,84,0,64,20,84 };
@ CONFIGURE_PIN_MODE0
(200)
@ CONFIGURE_PIN_MODE3
(203)
@ CONFIGURE_PIN_MODE4
(204)
@ CONFIGURE_PIN_MODE5
(205)
@ CONFIGURE_PIN_MODE8
(208)
@ CONFIGURE_PIN_MODE6
(206)
@ CONFIGURE_PIN_MODE7
(207)
@ PIN_MODE_LIQUIDCRYSTAL
(28)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
int16_t setRowOffsets(uint8_t row1, uint8_t row2, uint8_t row3, uint8_t row4)
Set the offsets in the LCD on-board memory for the beginning of each row.
int16_t noCursor()
Makes the cursor invisible.
int16_t scrollDisplayLeft()
Display moves left when scrolling.
int16_t blink()
Makes the cursor blink.
int16_t display()
Enables LCD display.
int16_t begin(uint8_t cols=80, uint8_t rows=1)
Initialization routine for SerialWombatLiquidCrystal.
int16_t leftToRight()
LCD Display entry occurs left to right.
int16_t beginE2(uint8_t e2Pin)
Add a second e pin for use wtih 40x4 LCD displays.
int16_t setCursor(uint8_t col, uint8_t row)
Set the cursor / next entry position.
int16_t noAutoscroll()
Turn off autoscrolling mode on the LCD display (not in the Serial Wombat chip)
int16_t noDisplay()
Disables LCD display.
size_t write(uint8_t *buffer, size_t count)
Write an array of data directly to the LCD.
int16_t home(bool delayAfterHome=true)
Set the LCD cursor / entry position to the 0,0 position.
int16_t noBlink()
Makes the cursor not blink.
int16_t rightToLeft()
LCD Display entry occurs right to left.
int16_t autoscroll()
Turn on autoscrolling mode on the LCD display (not in the Serial Wombat chip)
int16_t cursor()
Makes the cursor visible.
int16_t clear(bool delayAfterClear=true)
Clear the LCD display.
SerialWombatLiquidCrystal(SerialWombatChip &serialWombat, uint8_t rs, uint8_t enable, uint8_t d4, uint8_t d5, uint8_t d6, uint8_t d7)
Class constructor for SerialWombatLiquidCrystal.
int16_t scrollDisplayRight()
Display moves right when scrolling.
int16_t createChar(uint8_t index, uint8_t bitmap[])
Write bitmap data to the display for custom characters.
uint8_t swPinModeNumber()
returns the pin mode number. Override for use with classes that require this as a virtual function
uint8_t pin()
returns the e pin number. Override for use with classes that require this as a virtual function
size_t write(uint8_t data)
Write a byte of data directly to the LCD.
int16_t initializeBufferCopy(uint16_t bufferIndex, uint8_t width=255)
kicks off the Serial Wombat chip state machine that copies one character to the LCD each second from ...
int16_t command(uint8_t cmd)
send a command directly to the LCD
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.