-
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.
✨ Kraken: Read the current display mode from the device.
Turns out that this information was here all along. (It is queried by NZXT CAM)
- Loading branch information
Showing
3 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/Exo/Devices/Exo.Devices.Nzxt.Kraken/DisplayModeInformation.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,13 @@ | ||
namespace Exo.Devices.Nzxt.Kraken; | ||
|
||
internal readonly struct DisplayModeInformation | ||
{ | ||
public DisplayModeInformation(KrakenDisplayMode displayMode, byte imageIndex) | ||
{ | ||
DisplayMode = displayMode; | ||
ImageIndex = imageIndex; | ||
} | ||
|
||
public KrakenDisplayMode DisplayMode { get; } | ||
public byte ImageIndex { get; } | ||
} |
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