Click or drag to resize
ST7735 Class
A driver for displays controlled by the ST7735 controller such as the Adafruit 1.8" color display.
Inheritance Hierarchy
SystemObject
  Microsoft.IoT.Devices.DisplayST7735

Namespace: Microsoft.IoT.Devices.Display
Assembly: Microsoft.IoT.Devices (in Microsoft.IoT.Devices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class ST7735 : IGraphicsDisplay, 
	IDevice, IClosable, IStringable

The ST7735 type exposes the following members.

Constructors
  NameDescription
Public methodST7735
Initializes a new instance of the ST7735 class
Top
Properties
  NameDescription
Public propertyAutoUpdate
Gets or sets a value that indicates if Update should automatically be called after drawing operations.
Public propertyChipSelectLine
Gets or sets the chip select line to use on the SPIO controller.
Public propertyClockFrequency
Gets or sets the clock frequency that SPI will run at in MHz.
Public propertyControllerName
Gets or sets the name of the SPIO controller to use.
Public propertyDataCommandPin
Gets or sets the pin used to change between sending data and commands.
Public propertyDisplayType
Gets or sets the type of display connected to the controller.
Public propertyHeight
Gets or sets the height of the display in pixels.
Public propertyOrientation
Gets or sets the orientation of the display.
Public propertyPixelFormat
Gets or sets the format for each pixel on the display.
Public propertyResetPin
Gets or sets the pin used to reset the display.
Public propertyWidth
Gets or sets the width of the display in pixels.
Top
Methods
  NameDescription
Public methodClear
Clears the display.
Public methodClose
Public methodDrawPixel(Int32, Int32, Color)
Writes a pixel to display memory.
Public methodDrawPixel(Int32, Int32, Byte, Byte, Byte)
Writes a pixel to display memory.
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodInitializeAsync
Initializes the display.
Public methodIsOrientationSupported
Gets a value that indicates if the specified orientation is supported by the display.
Public methodToString (Inherited from Object.)
Public methodUpdate
Updates the display by writing any uncommitted operations.
Top
Remarks
This driver is adapted from several resources including Netduino Helpres and the Adafruit library for ST7735.
See Also