-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Start adding the embededd monitor service.
- Loading branch information
Showing
11 changed files
with
1,154 additions
and
458 deletions.
There are no files selected for viewing
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
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
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
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,7 @@ | ||
{ | ||
// Built-in Graphics Names | ||
"e4a8cc79-1062-4e85-9772-b4bfff6674b3": { | ||
"en": "Default animation", | ||
"fr": "Animation par défaut" | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
src/Exo/Service/Exo.Service.Core/EmbeddedMonitorCapabilities.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,12 @@ | ||
namespace Exo.Service; | ||
|
||
[Flags] | ||
public enum EmbeddedMonitorCapabilities : uint | ||
{ | ||
None = 0b00000000, | ||
StaticImages = 0b00000001, | ||
AnimatedImages = 0b00000010, | ||
PartialUpdates = 0b00000100, | ||
BuiltInGraphics = 0b00001000, | ||
ScreensaverImage = 0b00010000, | ||
} |
Oops, something went wrong.