Fork of LCD-Window which works with Enhanced TextLCD from Wim
Fork of LcdWindow by
DogmLCDSPI Class Reference
class for connecting a DOGM16x LCD display, from electronic assembly (www.lcd-module.com ) More...
#include <dogm_spi.h>
Inherits SPILCDBase.
Public Member Functions | |
| DogmLCDSPI (unsigned int columns, unsigned int rows, SPI *spi, PinName enable, PinName rs) | |
| virtual void | init () |
| this is the only function added to the Window interface it must be called from the outside, and initializes the display. | |
| virtual void | writeText (const unsigned int column, const unsigned int row, const char text[]) |
| write text into the window, at the given position. | |
| virtual void | clear () |
| clears the window | |
| virtual void | character (int column, int row, int c) |
| writes a character to the specified position must be public because it is used during delegation | |
| virtual int | getRows () |
| virtual int | getColumns () |
| virtual void | locate (int column, int row) |
| set (internal) cursor to a screen column and row | |
| int | putc (int c) |
| Write a character to the LCD, on the position specified by the cursor sets the cursor to the next position, and wraps (from right to left, next line, and from bottom back to top) | |
| int | printf (const char *format,...) |
| Write a formated string to the LCD, on the position specified by the cursor does wrap around (as specified by putc) | |
Detailed Description
class for connecting a DOGM16x LCD display, from electronic assembly (www.lcd-module.com )
Definition at line 38 of file dogm_spi.h.
Constructor & Destructor Documentation
| DogmLCDSPI | ( | unsigned int | columns, |
| unsigned int | rows, | ||
| SPI * | spi, | ||
| PinName | enable, | ||
| PinName | rs | ||
| ) |
- Parameters:
-
columns number of chars per line rows number of lines (currently only 1 and 2 work) the SPI object used for sending data (set to 1MHz) enable the pin name for the enable line (0=active, connected to /CSB) rs the pin name for the register select line (0=cmd, 1=data)
Definition at line 31 of file dogm_spi.cpp.
Member Function Documentation
| void character | ( | int | column, |
| int | row, | ||
| int | c | ||
| ) | [virtual] |
writes a character to the specified position must be public because it is used during delegation
- Parameters:
-
column The horizontal position from the left, indexed from 0 row The vertical position from the top, indexed from 0 c the character
Implements Window.
Definition at line 50 of file dogm_spi.cpp.
| void clear | ( | ) | [virtual] |
| virtual int getColumns | ( | ) | [virtual, inherited] |
| virtual int getRows | ( | ) | [virtual, inherited] |
| void init | ( | ) | [virtual] |
this is the only function added to the Window interface it must be called from the outside, and initializes the display.
Implements TextLCDBase.
Definition at line 36 of file dogm_spi.cpp.
| void locate | ( | int | column, |
| int | row | ||
| ) | [virtual, inherited] |
set (internal) cursor to a screen column and row
- Parameters:
-
column The horizontal position from the left, indexed from 0 row The vertical position from the top, indexed from 0
Definition at line 26 of file window.cpp.
| int printf | ( | const char * | format, |
| ... | |||
| ) | [inherited] |
Write a formated string to the LCD, on the position specified by the cursor does wrap around (as specified by putc)
- Parameters:
-
format A printf-style format string, followed by the variables to use in formating the string.
Reimplemented in TextLCDAdapter.
| int putc | ( | int | c ) | [inherited] |
Write a character to the LCD, on the position specified by the cursor sets the cursor to the next position, and wraps (from right to left, next line, and from bottom back to top)
- Parameters:
-
c The character to write to the display
Reimplemented in TextLCDAdapter.
| void writeText | ( | const unsigned int | column, |
| const unsigned int | row, | ||
| const char | text[] | ||
| ) | [virtual] |
write text into the window, at the given position.
this doesn't change the internal cursor position Implementations should check for the length of the text and shorten it accordingly. columns the column where to write row the line where to write text the text to write
Implements Window.
Definition at line 62 of file dogm_spi.cpp.
Generated on Tue Jul 12 2022 20:32:52 by
1.7.2
