Difference between revisions of "Component: GLCD (SSD1306) Buffered (SSD1306) (Graphical Monochrome)"
From Flowcode Help
Jump to navigationJump to search| Line 815: | Line 815: | ||
| | colspan="2" | Font picker to decide which font to use on your display.  | | colspan="2" | Font picker to decide which font to use on your display.  | ||
| |- | |- | ||
| − | | width="10%" align="center" | [[File:Fc9-type- | + | | width="10%" align="center" | [[File:Fc9-type-21-icon.png]] | 
| + | | width="90%" | Bytes Required | ||
| + | |- | ||
| + | | colspan="2" | Number of bytes required in program memory to store the selected font.  | ||
| + | |- | ||
| + | | width="10%" align="center" | [[File:Fc9-type-21-icon.png]] | ||
| | width="90%" | Character Spacing | | width="90%" | Character Spacing | ||
| |- | |- | ||
| − | | colspan="2" | Sets the number of blank pixels between each character when printing text | + | | colspan="2" | Sets the number of blank pixels between each character when printing text.  | 
| |- | |- | ||
| − | | width="10%" align="center" | [[File:Fc9-type- | + | | width="10%" align="center" | [[File:Fc9-type-21-icon.png]] | 
| | width="90%" | Space Width | | width="90%" | Space Width | ||
| |- | |- | ||
Latest revision as of 08:59, 9 June 2025
| Author | Matrix Ltd | 
| Version | 1.6 | 
| Category | Graphical Monochrome | 
Contents
- 1 GLCD (SSD1306) Buffered component
- 2 Version information
- 3 Detailed description
- 4 Examples
- 5 Macro reference
- 5.1 BPlot
- 5.2 ClearDisplay
- 5.3 ControlContrast
- 5.4 ControlDisplay
- 5.5 DrawArc
- 5.6 DrawCircle
- 5.7 DrawEllipse
- 5.8 DrawLine
- 5.9 DrawRectangle
- 5.10 DrawRoundedRectangle
- 5.11 Initialise
- 5.12 InvertDisplay
- 5.13 Plot
- 5.14 Print
- 5.15 PrintNumber
- 5.16 ReadFontStat
- 5.17 ReadFontWidth
- 5.18 SendCommand
- 5.19 SetBackgroundColour
- 5.20 SetDisplayOrientation
- 5.21 SetFontScaler
- 5.22 SetForegroundColour
 
- 6 Property reference
- 7 Component Source Code
GLCD (SSD1306) Buffered component
Graphical display component based on the SSD1306 monochrome graphical controller IC. Functions without the use of a read pin by hosting the 1K of graphical memory using the microcontroller's RAM memory.
Version information
Library Version, Component Version, Date, Author, Info 11, 1.0, 22-07-24, BR, Added DrawArc and DrawRoundedRectangle functions
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. | |
|  - UINT | X1 | 
|  - UINT | Y1 | 
|  - VOID | Return | 
ClearDisplay
|   | ClearDisplay | 
| This macro clears the display of any previous output by overwriting the entire display with the background colour. | |
|  - VOID | Return | 
ControlContrast
|   | ControlContrast | 
| Sets the display contrast from 0 to 255. | |
|  - BYTE | Contrast | 
| Range 0 - 255, Default 207 | |
|  - VOID | Return | 
ControlDisplay
|   | ControlDisplay | 
| Allows the display to be switched on and off | |
|  - BYTE | Control | 
| 0=Off, 1=On | |
|  - VOID | Return | 
DrawArc
DrawCircle
DrawEllipse
DrawLine
|   | DrawLine | 
| Draws a line with the current foreground colour from pixel location X1, Y1 to pixel location X2, Y2. | |
|  - UINT | X1 | 
|  - UINT | Y1 | 
|  - UINT | X2 | 
|  - UINT | Y2 | 
|  - VOID | Return | 
DrawRectangle
DrawRoundedRectangle
Initialise
|   | Initialise | 
| The Init macro must be called once to initialise the Graphical LCD display before any other Graphical LCD component macros are called. | |
|  - VOID | Return | 
InvertDisplay
|   | InvertDisplay | 
|  - VOID | Return | 
Plot
|   | Plot | 
| Sets a pixel with the current foreground colour at pixel location X, Y. | |
|  - UINT | X1 | 
|  - UINT | Y1 | 
|  - VOID | Return | 
PrintNumber
ReadFontStat
|   | ReadFontStat | 
| Gets a stat from the selected embedded ASCII font data. | |
|  - BYTE | Font | 
| Font selection range: 0 to (NumFonts - 1) | |
|  - BYTE | Index | 
| 0=SpaceWidth, 1=PixelHeight | |
|  - BYTE | Return | 
ReadFontWidth
SendCommand
|   | SendCommand | 
|  - BYTE | Command | 
|  - VOID | Return | 
SetBackgroundColour
|   | SetBackgroundColour | 
| Specifies the colour of the background by creating a mixture of red, green and blue. | |
|  - BYTE | PixelColour | 
| 0=White, 1=Black | |
|  - VOID | Return | 
SetDisplayOrientation
SetFontScaler
SetForegroundColour
|   | SetForegroundColour | 
| Specifies the colour of the foreground by creating a mixture of red, green and blue. | |
|  - BYTE | PixelColour | 
| 0=White, 1=Black | |
|  - VOID | Return | 
Property reference
Component Source Code
Please click here to download the component source project: FC_Comp_Source_GLCD_SSD1306_buffered.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_GLCD_SSD1306_buffered.fcfx











