Skip to content

Commit

Permalink
Added Epd5in65fVirtual and some todos
Browse files Browse the repository at this point in the history
  • Loading branch information
bryancostanich committed Dec 31, 2024
1 parent 6eb8d57 commit 6f024f7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using Meadow.Peripherals.Displays;

namespace Meadow.Foundation.Displays;

/// <summary>
/// A virtual display instance of the Epd5in65 epaper display.
///
/// TODO: Move to epapers project when finished.
/// </summary>
public class Epd5in65fVirtual : VirtualDisplayBase
{
public Epd5in65fVirtual() : base(600, 448, RotationType.Normal, ColorMode.Format4bppIndexed)
{
base.SupportedColorModes = ColorMode.Format4bppIndexed;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ namespace Meadow.Foundation.Displays;

/// <summary>
/// Sample named virtual display
///
/// TODO: Move this to the TFT Displays project after we're happy with implementation. Only in here right now for
/// convenience as a WiP.
/// </summary>
public class Ili9341Virtual : VirtualDisplayBase
{
Expand Down

0 comments on commit 6f024f7

Please sign in to comment.