From ab8f50534bfebc0ebd9e54a125d74805113ab074 Mon Sep 17 00:00:00 2001 From: Logan Saso Date: Sat, 26 Mar 2016 16:32:57 -0700 Subject: [PATCH] Added eyeballed regions for razer keyboards --- Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs b/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs index f0f409e11..fb9881738 100644 --- a/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs +++ b/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs @@ -34,6 +34,10 @@ namespace Artemis.KeyboardProviders.Razer Chroma.Instance.Initialize(); Height = Constants.MaxRows; Width = Constants.MaxColumns; + + KeyboardRegions.Add(new KeyboardRegion("TopRow", new Point(0, 0), new Point(19, 0))); + KeyboardRegions.Add(new KeyboardRegion("NumPad", new Point(20, 1), new Point(23, 6))); + KeyboardRegions.Add(new KeyboardRegion("QWER", new Point(2, 2), new Point(5, 2))); } public override void Disable()