Component: LCD (I2C) (Displays: Alphanumeric)

From Flowcode Help
Jump to navigationJump to search


Author Matrix Ltd
Version 2.0 (Release)
Category Displays: Alphanumeric
This inherits from LCD (Generic)


Image LCD (I2C) component

Standard alphanumeric LCD based on a standard I2C control bus.

Examples

No additional examples


Downloadable macro reference

This component inherits downloadable macros from LCD (Generic)

Clear

No additional information


Parameters

This macro has no parameters


Return value

This call does not return a value


PrintString

No additional information


Parameters

<- STRING Text
This parameter may be returned back to the caller


Return value

This call does not return a value


PrintAscii

Takes the ascii value for a character and prints the character

Parameters

BYTE character


Return value

This call does not return a value


PrintNumber

Allows you to print a number. This is limited to a signed-INT, -32768 to 32767

Parameters

INT Number


Return value

This call does not return a value


RAMWrite

Modifies the internal memory of the LCD to allow for up to 8 customised characters to be created and stored in the device memory

Parameters

BYTE Index
BYTE d0
BYTE d1
BYTE d2
BYTE d3
BYTE d4
BYTE d5
BYTE d6
BYTE d7


Return value

This call does not return a value


ClearLine

No additional information


Parameters

BYTE Line


Return value

This call does not return a value


Cursor

Moves the cursor on the LCD Display

Parameters

BYTE x
BYTE y


Return value

This call does not return a value


Command

Use this method/macro to send a specific command to the LCD. Refer to the Matrix Multimedia EB006 datasheet for a list of supported instructions. For Non-Matrix LCD's refer to the manufacturers datasheet.

Parameters

BYTE instruction


Return value

This call does not return a value


PrintFormattedNumber

Will allow you to print a number up to 32-bits with signed or unsigned formatting.

Signed = -2147483648 to 2147483647

Unsigned = 0 to 4294967295

Parameters

ULONG Number
Enter the number or variable to print to the LCD
BOOL Format
0=Signed, 1=Unsigned


Return value

This call does not return a value


ScrollDisplay

Scrolls the display left or right by a number of given positions.

Parameters

BYTE position
BYTE direction


Return value

This call does not return a value


RawSend

Sends data to the LCD display

This call is provided by LCD (Generic)

Parameters

BYTE data
The data byte to send to the LCD
BOOL type
A boolean to indicate command type: true to write data, false to write a command


Return value

This call does not return a value


RemapCharacter

Assigns a remap character allowing the PrintString function to automatically swap between pre-defined characters.

The characters can be custom (in the range 0-9) or can point to an existing character in the LCD character map.

This call is provided by LCD (Generic)

Parameters

BYTE RemapIdx
Remap Index, Range: 0 to (Remap Characters - 1)
BYTE SearchCharacter
Character to look for a replace
BYTE ReplacementCharacter
New character value to use in place of the search character.


Return value

This call does not return a value


Start

Startup routine required by the hardware device.

Parameters

This macro has no parameters


Return value

This call does not return a value


BacklightControl

No additional information


Parameters

BYTE State


Return value

This call does not return a value


SetI2CAddress

Allows the I2C device address to be dynamically changed in software without

having to re-compile. Can be called before the first Start macro or at any point

after.

Parameters

BYTE Address
New I2C Device Address excluding R/W bit - Range 0 - 127


Return value

This call does not return a value


Simulation macro reference

This component does not contain any simulation macros


Property reference

LCD Address

This property is of type Unsigned integer and can be referenced with the variable name Address.

No additional information


Channel

This property is of type Fixed list of ints and can be referenced with the variable name cal_i2c1::CHANNEL.

Channel selection

Baud Select

This property is of type Fixed list of ints and can be referenced with the variable name cal_i2c1::BAUD_LIST.

Baud rate option selector

Baud Rate

This property is of type Signed integer and can be referenced with the variable name cal_i2c1::BAUD.

Baud rate to be used

Stop Delay

This property is of type True or false and can be referenced with the variable name cal_i2c1::StopDel.

On older microcontroller devices there is a potential for the I2C hardware channel to lock up if there is not

a 10ms delay between an I2C stop event and the next I2C start event.


Most modern microcontrollers will not have a problem so this property can be disabled to speed up the

I2C communications.

SDA

This property is of type Single digital pin and can be referenced with the variable name cal_i2c1::SDA.

Pin used for SDA (data signal)

SCL

This property is of type Single digital pin and can be referenced with the variable name cal_i2c1::SCL.

Pin used for SCL (clock signal)

Rows

This property is of type Fixed list of ints and can be referenced with the variable name Rows.

No additional information


Columns

This property is of type Fixed list of ints and can be referenced with the variable name Columns.

No additional information