-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
Epd5in65fVirtual
and some todos
- Loading branch information
1 parent
6eb8d57
commit 6f024f7
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Source/Meadow.Foundation.Peripherals/Displays.Virtual/Driver/Epd5in65fVirtual.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters