Difference between revisions of "Component: LCD (Adafruit, 20x4) (Alphanumeric)"
From Flowcode Help
Jump to navigationJump to searchLine 48: | Line 48: | ||
''<span style="color:red;">No additional examples</span>'' | ''<span style="color:red;">No additional examples</span>'' | ||
+ | |||
+ | |||
Line 362: | Line 364: | ||
| 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 Ltd |
Version | 1.10 |
Category | Alphanumeric |
Contents
LCD (Adafruit, 20x4) component
Adafruit OLED LCD display capable of displaying 4 lines of 20 characters.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_temp/LCD_Adafruit_OLED2.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_temp/LCD_Adafruit_OLED2.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
Clear
![]() |
Clear |
Clears the entire contents of the display. | |
![]() |
Return |
ClearLine
![]() |
ClearLine |
Clears a single line on the display before moving the cursor back to the start of the line to allow new data to be displayed. | |
![]() |
Line |
![]() |
Return |
Command
Cursor
![]() |
Cursor |
Moves the cursor on the LCD Display | |
![]() |
x |
![]() |
y |
![]() |
Return |
PrintAscii
![]() |
PrintAscii |
Takes the ascii value for a character and prints the character | |
![]() |
character |
Holds an ascii value. | |
![]() |
Return |
PrintFloat
PrintFormattedNumber
PrintNumber
![]() |
PrintNumber |
Based on v5 macro, will allow you to print a number. This is limited to a signed-INT, -32768 to 32767 | |
![]() |
Number |
![]() |
Return |
PrintString
![]() |
PrintString |
Breaks down a string of text and sends it to the LCD via the private RawSend(byte, mask) macro | |
![]() |
Text |
![]() |
Return |
RAMWrite
RemapCharacter
ScrollDisplay
![]() |
ScrollDisplay |
Scrolls the display left or right by a number of given positions. | |
![]() |
Position |
Holds the number of positions to shift the display | |
![]() |
direction |
0 = left, 1 = right | |
![]() |
Return |
Start
![]() |
Start |
Startup routine required by the hardware device. Automatically clears the display when complete. | |
![]() |
Return |