Edit

Share via


SetColumnAddress(Byte, Byte) Constructor

Definition

This triple byte command specifies column start address and end address of the display data RAM. This command also sets the column address pointer to column start address. This pointer is used to define the current read/write column address in graphic display data RAM. If horizontal address increment mode is enabled by command 20h, after finishing read/write one column data, it is incremented automatically to the next column address. Whenever the column address pointer finishes accessing the end column address, it is reset back to start column address and the row address is incremented to the next row. This command is only for horizontal or vertical addressing modes.

public SetColumnAddress (byte startAddress = 0, byte endAddress = 127);
new Iot.Device.Ssd13xx.Commands.Ssd1306Commands.SetColumnAddress : byte * byte -> Iot.Device.Ssd13xx.Commands.Ssd1306Commands.SetColumnAddress
Public Sub New (Optional startAddress As Byte = 0, Optional endAddress As Byte = 127)

Parameters

startAddress
Byte

Column start address with a range of 0-127.

endAddress
Byte

Column end address with a range of 0-127.

Applies to