Table of Contents

Class Ssd1327

Namespace
Iot.Device.Ssd13xx
Assembly
Iot.Device.Ssd13xx.dll

Represents SSD1327 OLED display.

public class Ssd1327 : Ssd13xx
Inheritance
Ssd1327
Inherited Members

Constructors

Ssd1327(I2cDevice)

Initializes a new instance of the Ssd1327 class.

public Ssd1327(I2cDevice i2cDevice)

Parameters

i2cDevice I2cDevice

The I2C device used for communication.

Methods

ClearDisplay()

Clears the display.

public void ClearDisplay()

SendCommand(ISharedCommand)

Sends command to the device.

public override void SendCommand(ISharedCommand command)

Parameters

command ISharedCommand

Command being send.

SendCommand(ISsd1327Command)

Sends command to the device.

public void SendCommand(ISsd1327Command command)

Parameters

command ISsd1327Command

Command being send.

SendCommand(byte)

Send a command to the display controller.

public void SendCommand(byte command)

Parameters

command byte

The command to send to the display controller.

SendData(byte)

Send data to the display controller.

public void SendData(byte data)

Parameters

data byte

The data to send to the display controller.

SetColumnAddress(byte, byte)

Sets column address.

public void SetColumnAddress(byte startAddress = 8, byte endAddress = 55)

Parameters

startAddress byte

Start address.

endAddress byte

End address.

SetRowAddress(byte, byte)

Sets row address.

public void SetRowAddress(byte startAddress = 0, byte endAddress = 95)

Parameters

startAddress byte

Start address.

endAddress byte

End address.