Пример #1
0
        public override bool Initialize()
        {
            if (IsInitialized)
            {
                return(IsInitialized);
            }

            try
            {
                if (RGBControl.IsConnected())
                {
                    IsInitialized = true;
                    _deviceInfo   = RGBControl.GetDeviceInfo().Model;
                    cb            = new DisconnectedCallback(OnDisconnect);
                    RGBControl.SetDisconnectedCallback(cb);
                }
                else
                {
                    IsInitialized = false;
                    _deviceInfo   = "";
                }
            }
            catch (Exception exc)
            {
                LogError("There was an error initializing Wooting SDK.\r\n" + exc.Message);

                IsInitialized = false;
            }

            return(IsInitialized);
        }
Пример #2
0
        public bool Initialize()
        {
            lock (action_lock)
            {
                if (!isInitialized)
                {
                    try
                    {
                        if (RGBControl.IsConnected())
                        {
                            isInitialized = true;
                        }
                    }
                    catch (Exception exc)
                    {
                        Global.logger.Error("There was an error initializing Wooting SDK.\r\n" + exc.Message);

                        return(false);
                    }
                }

                if (!isInitialized)
                {
                    Global.logger.Info("No Wooting devices successfully Initialized!");
                }

                return(isInitialized);
            }
        }
Пример #3
0
        static void TestRGB()
        {
            Console.WriteLine("Wooting Rgb Control testing!");
            Console.WriteLine($"wooting_rgb_kbd_connected: {RGBControl.IsConnected()}");
            //RGBControl.wooting_rgb_direct_set_key(0, 0, 255, 0, 0);
            //Console.WriteLine("Turning on auto-update!");
            //RGBControl.wooting_rgb_array_auto_update(true);
            Console.WriteLine("Set disconnected cb");
            RGBControl.SetDisconnectedCallback((DisconnectedCallback)dc_cb);
            Console.WriteLine("Setting some keys directly!");
            Console.WriteLine($"Setting ESC green: {RGBControl.SetKey(WootingKey.Keys.Esc, 0, 255, 0)}");
            RGBControl.UpdateKeyboard();
            Console.WriteLine("Setting Enter Red");
            RGBControl.SetKey(WootingKey.Keys.Enter, 255, 0, 0, true);
            Console.WriteLine("Setting G blue");
            RGBControl.SetKey(WootingKey.Keys.G, 0, 0, 255, true);
            Console.WriteLine("Setting Mode/Scroll Lock green");
            RGBControl.SetKey(WootingKey.Keys.Mode_ScrollLock, 0, 255, 0, true);
            Thread.Sleep(5000);

            Console.WriteLine("Setting the keyboard blank!");
            KeyColour[,] keys = new KeyColour[RGBControl.MaxRGBRows, RGBControl.MaxRGBCols];
            for (byte i = 0; i < RGBControl.MaxRGBCols; i++)
            {
                for (byte j = 0; j < RGBControl.MaxRGBRows; j++)
                {
                    keys[j, i] = new KeyColour(0, 0, 0);
                }
            }
            RGBControl.SetFull(keys);
            RGBControl.UpdateKeyboard();
            Thread.Sleep(1000);

            //RGBControl.woo(true);

            for (byte i = 0; i < RGBControl.MaxRGBCols; i++)
            {
                for (byte j = 0; j < RGBControl.MaxRGBRows; j++)
                {
                    Console.WriteLine($"Setting the key, ROW:{j}, COL:{i}");
                    keys[j, i] = new KeyColour(255, 255, 0);
                    //RGBControl.SetKey(j, i, 255, 0, 0, true);
                    //RGBControl.SetFull(keys);
                    //RGBControl.UpdateKeyboard();
                    RGBControl.SetFull(keys);
                    RGBControl.UpdateKeyboard();
                    Thread.Sleep(100);
                }
                //Thread.Sleep(1000);
            }
            //Console.WriteLine($"wooting_rgb_kbd_connected: {RGBControl.wooting_rgb_kbd_connected()}");
            Console.ReadKey();
            RGBControl.Reset();
            Console.ReadKey();
        }
Пример #4
0
        public override bool Initialize()
        {
            if (!isInitialized)
            {
                try
                {
                    if (RGBControl.IsConnected())
                    {
                        isInitialized = true;
                    }
                }
                catch (Exception exc)
                {
                    LogError("There was an error initializing Wooting SDK.\r\n" + exc.Message);

                    return(false);
                }
            }

            return(isInitialized);
        }
Пример #5
0
        static void TestRGB()
        {
            Console.WriteLine("Wooting Rgb Control testing!");
            RGBDeviceInfo device = RGBControl.GetDeviceInfo();

            Console.WriteLine($"Initial Device Info has got: Connected: {device.Connected}, Model: {device.Model}, Type: {device.DeviceType}, Max Rows: {device.MaxRows}, Max Cols: {device.MaxColumns}, Max Keycode: {device.KeycodeLimit}");

            bool connected = RGBControl.IsConnected();

            Console.WriteLine($"wooting_rgb_kbd_connected: {connected}");


            if (!connected)
            {
                return;
            }

            device = RGBControl.GetDeviceInfo();
            Console.WriteLine($"Device Info has got: Connected: {device.Connected}, Model: {device.Model}, Type: {device.DeviceType}, Max Rows: {device.MaxRows}, Max Cols: {device.MaxColumns}, Max Keycode: {device.KeycodeLimit}");

            //Console.WriteLine("Turning on auto-update!");
            //RGBControl.wooting_rgb_array_auto_update(true);
            Console.WriteLine("Set disconnected cb");
            RGBControl.SetDisconnectedCallback((DisconnectedCallback)dc_cb);
            Console.WriteLine("Setting some keys directly!");
            Console.WriteLine($"Setting ESC green: {RGBControl.SetKey(WootingKey.Keys.Esc, 0, 255, 0, true)}");
            // RGBControl.UpdateKeyboard();
            Console.WriteLine("Setting Enter Red");
            RGBControl.SetKey(WootingKey.Keys.Enter, 255, 0, 0, true);
            Console.WriteLine("Setting G blue");
            RGBControl.SetKey(WootingKey.Keys.G, 0, 0, 255, true);
            Console.WriteLine("Setting Mode/Scroll Lock green");
            RGBControl.SetKey(WootingKey.Keys.Mode_ScrollLock, 0, 255, 0, true);
            Console.WriteLine("Press any key to continue...");
            Console.ReadKey();

            Console.WriteLine("Setting the keyboard blank!");
            KeyColour[,] keys = new KeyColour[RGBControl.MaxRGBRows, RGBControl.MaxRGBCols];
            for (byte i = 0; i < device.MaxColumns; i++)
            {
                for (byte j = 0; j < device.MaxRows; j++)
                {
                    keys[j, i] = new KeyColour(0, 0, 0);
                }
            }
            RGBControl.SetFull(keys);
            RGBControl.UpdateKeyboard();
            RGBControl.ResetRGB();
            Thread.Sleep(1000);
            RGBControl.Close();

            for (byte i = 0; i < device.MaxColumns; i++)
            {
                for (byte j = 0; j < device.MaxRows; j++)
                {
                    Console.WriteLine($"Setting the key, ROW:{j}, COL:{i}");
                    keys[j, i] = new KeyColour(255, 255, 0);
                    RGBControl.SetFull(keys);
                    RGBControl.UpdateKeyboard();
                    Thread.Sleep(100);
                }
            }
            Console.WriteLine("Press any key to reset all colors to default...");
            Console.ReadKey();
            RGBControl.Close();
        }