Difference between revisions of "Component: GLCD Graph Creator (Graphical Library)"
Line 96: | Line 96: | ||
* The height should be equal to or a division of the input range - Min Value 0 to Max Value 255 = input range of 256 | * The height should be equal to or a division of the input range - Min Value 0 to Max Value 255 = input range of 256 | ||
* If Show Border is enabled then Width and Height should be as above plus 2 to account for the border pixels | * If Show Border is enabled then Width and Height should be as above plus 2 to account for the border pixels | ||
+ | |||
+ | |||
Line 141: | Line 143: | ||
| width="90%" style="border-top: 2px solid #000;" | ''Return'' | | width="90%" style="border-top: 2px solid #000;" | ''Return'' | ||
|} | |} | ||
− | |||
− | |||
Revision as of 12:20, 3 February 2023
Author | Matrix TSL |
Version | 1.2 |
Category | Graphical Library |
Contents
GLCD Graph Creator component
A component to simplify the process of drawing graphs and charts using a graphical LCD.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_temp/Lib_GLCD_Graph.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_temp/Lib_GLCD_Graph.fcfx
Detailed description
No detailed description exists yet for this component
Examples
The graph creator component must be linked to the graphical LCD using the gLCD Object property.
The X Coord, Y Coord, Width and Height component properties set the size and position of the graph on the gLCD.
In the attached example the ADC component sets the input to the graph. Every 50ms a sample is taken and added to the graph.
Any size of graph can be created. For efficiency it is best to try and stick to the following rules.
- The width should be equal to or a multiple of the number of points
- The height should be equal to or a division of the input range - Min Value 0 to Max Value 255 = input range of 256
- If Show Border is enabled then Width and Height should be as above plus 2 to account for the border pixels
Macro reference
AddPoint
![]() |
AddPoint |
Adds a new data point to the graph. | |
![]() |
Data |
Data Value to plot | |
![]() |
Index |
Plot Index: Range 0-7 | |
![]() |
Return |
Initialise
![]() |
Initialise |
Initialises the graph object on the GLCD to the specified dimensions. | |
![]() |
Return |