Skip to content

Commit

Permalink
make a few interfaces derive from IPixelDisplay
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Aug 20, 2024
1 parent d06de35 commit 39e2023
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace Meadow.Peripherals.Displays;

/// <summary>
/// Represents a display that supports rotation in 90 degree increments
/// Represents a display that supports inverting colors
/// </summary>
public interface IColorInvertableDisplay
public interface IColorInvertableDisplay : IPixelDisplay
{
/// <summary>
/// Invert the display colors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Represents a display that supports rotation in 90 degree increments
/// </summary>
public interface IRotatableDisplay
public interface IRotatableDisplay : IPixelDisplay
{
/// <summary>
/// Set the rotation of the display
Expand Down

0 comments on commit 39e2023

Please sign in to comment.