Interface IPixelDisplayProvider
Represents an object that can create IPixelDisplays
Assembly: Meadow.Contracts.dll
View Source
Declaration
public interface IPixelDisplayProvider
Methods
CreateDisplay(int?, int?)
Creates an IPixelDisplay with the provided (or default) parameters
View Source
Declaration
IResizablePixelDisplay CreateDisplay(int? width = null, int? height = null)
Returns
Meadow.Peripherals.Displays.IResizablePixelDisplay: An instance of an IPixelDisplay
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.Int32> | width | The desired display width |
System.Nullable<System.Int32> | height | The desired display height |