Skip to content

Commit

Permalink
Merge pull request #204 from CoraleStudios/feature/ornata
Browse files Browse the repository at this point in the history
Adds Ornata support
  • Loading branch information
Sharparam authored Nov 7, 2016
2 parents e38da7f + 4db3589 commit 5728d38
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion Corale.Colore/Razer/Devices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,23 @@ public static class Devices
0x5,
0x3b);

/// <summary>
/// Razer Ornata Keyboard.
/// </summary>
[PublicAPI]
public static readonly Guid Ornata = new Guid(
0x803378c1,
0xcc48,
0x4970,
0x85,
0x39,
0xd8,
0x28,
0xcc,
0x1d,
0x42,
0xa);

/// <summary>
/// Returns whether a specified <see cref="Guid" /> is a valid device identifier.
/// </summary>
Expand All @@ -437,7 +454,7 @@ public static bool IsValidId(Guid id)
|| id == BlackwidowTe || id == Kraken71 || id == Firefly || id == Deathstalker || id == Diamondback
|| id == Mamba || id == OverwatchKeyboard || id == Orochi || id == BladeStealth || id == Naga
|| id == NagaEpic || id == Core || id == LenovoY27 || id == LenovoY900 || id == Blade14 || id == BlackwidowX
|| id == BlackwidowXTe || id == NagaHex;
|| id == BlackwidowXTe || id == NagaHex || id == Ornata;
}
}
}

0 comments on commit 5728d38

Please sign in to comment.