Difference between revisions of "Component: GLCD (ST7920) (Graphical Monochrome)"
From Flowcode Help
Jump to navigationJump to search (Created page with "{| style="width:50%" |- | width="20%" style="color:gray;" | Author | Matrix Ltd |- | width="20%" style="color:gray;" | Version | 1.4 |- | width="20%" style="color:gray...") |
|||
Line 5: | Line 5: | ||
|- | |- | ||
| width="20%" style="color:gray;" | Version | | width="20%" style="color:gray;" | Version | ||
− | | 1. | + | | 1.5 |
|- | |- | ||
| width="20%" style="color:gray;" | Category | | width="20%" style="color:gray;" | Category | ||
Line 20: | Line 20: | ||
11, 1.4, 03-05-24, BR, Added SPI data mode to the component to work with serial displays | 11, 1.4, 03-05-24, BR, Added SPI data mode to the component to work with serial displays | ||
12, 1.4, 20-06-24, BR, Fixed a bug where read SPI pixel data was being repacked incorrectly | 12, 1.4, 20-06-24, BR, Fixed a bug where read SPI pixel data was being repacked incorrectly | ||
− | + | 13, 1.5, 25-06-24, BR, Added an option to allow the pixel data to be buffer locally | |
− | |||
==Detailed description== | ==Detailed description== | ||
Line 628: | Line 627: | ||
|- | |- | ||
| colspan="2" | | | colspan="2" | | ||
+ | |- | ||
+ | | width="10%" align="center" | [[File:Fc9-type-7-icon.png]] | ||
+ | | width="90%" | Local Buffer | ||
+ | |- | ||
+ | | colspan="2" | The display needs pixels to be assigned in blocks of 8 so for the display to function correctly we need to be able to know the value of pixels on the display to be able to draw without corruption. No - Use the display itself as a pixel buffer Yes - Use the local RAM as a pixel buffer | ||
|- | |- | ||
| width="10%" align="center" | [[File:Fc9-type-5-icon.png]] | | width="10%" align="center" | [[File:Fc9-type-5-icon.png]] |
Revision as of 10:12, 25 June 2024
Author | Matrix Ltd |
Version | 1.5 |
Category | Graphical Monochrome |
Contents
- 1 GLCD (ST7920) component
- 2 Version information
- 3 Detailed description
- 4 Examples
- 5 Macro reference
- 5.1 BPlot
- 5.2 ClearDisplay
- 5.3 DrawCircle
- 5.4 DrawEllipse
- 5.5 DrawLine
- 5.6 DrawRectangle
- 5.7 Initialise
- 5.8 Plot
- 5.9 Print
- 5.10 PrintNumber
- 5.11 ReadFontStat
- 5.12 ReadFontWidth
- 5.13 SetBackgroundColour
- 5.14 SetDisplayOrientation
- 5.15 SetFontScaler
- 5.16 SetForegroundColour
- 5.17 Write_Command
- 5.18 Write_Data
- 6 Property reference
- 7 Component Source Code
GLCD (ST7920) component
Graphical display component designed to work with the ST7920 type monochrome displays. Transfers data using an 8-bit/4-bit/SPI digital data bus.
Version information
Library Version, Component Version, Date, Author, Info 11, 1.4, 03-05-24, BR, Added SPI data mode to the component to work with serial displays 12, 1.4, 20-06-24, BR, Fixed a bug where read SPI pixel data was being repacked incorrectly 13, 1.5, 25-06-24, BR, Added an option to allow the pixel data to be buffer locally
Detailed description
Click here for an in depth guide to graphical LCDs using Flowcode.
Information on the Fonts available for this component are available here. GLCD Font Subcomponent
Examples
No additional examples
Macro reference
BPlot
![]() |
BPlot |
Sets a pixel with the current background colour at pixel location X, Y. | |
![]() |
X1 |
![]() |
Y1 |
![]() |
Return |
ClearDisplay
![]() |
ClearDisplay |
This macro clears the display of any previous output by overwriting the entire display with the background colour. | |
![]() |
Return |
DrawCircle
DrawEllipse
DrawLine
![]() |
DrawLine |
Draws a line with the current foreground colour from pixel location X1, Y1 to pixel location X2, Y2. | |
![]() |
X1 |
![]() |
Y1 |
![]() |
X2 |
![]() |
Y2 |
![]() |
Return |
DrawRectangle
Initialise
![]() |
Initialise |
The Init macro must be called once to initialise the Graphical LCD display before any other Graphical LCD component macros are called. | |
![]() |
Return |
Plot
![]() |
Plot |
Sets a pixel with the current foreground colour at pixel location X, Y. | |
![]() |
X1 |
![]() |
Y1 |
![]() |
Return |
PrintNumber
ReadFontStat
![]() |
ReadFontStat |
Gets a stat from the selected embedded ASCII font data. | |
![]() |
Font |
Font selection range: 0 to (NumFonts - 1) | |
![]() |
Index |
0=SpaceWidth, 1=PixelHeight | |
![]() |
Return |
ReadFontWidth
SetBackgroundColour
![]() |
SetBackgroundColour |
Specifies the colour of the foreground | |
![]() |
PixelColour |
0=White, 1=Black | |
![]() |
Return |
SetDisplayOrientation
SetFontScaler
SetForegroundColour
![]() |
SetForegroundColour |
Specifies the colour of the foreground. | |
![]() |
PixelColour |
0=White, 1=Black | |
![]() |
Return |
Write_Command
![]() |
Write_Command |
![]() |
Command |
![]() |
Return |
Write_Data
![]() |
Write_Data |
![]() |
data |
![]() |
Return |
Property reference
Component Source Code
Please click here to download the component source project: FC_Comp_Source_GLCD_ST7920.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_GLCD_ST7920.fcfx