From 5c8c2e97fd76b1b1f08ccd4c4cc5b7cd46ce272b Mon Sep 17 00:00:00 2001 From: Kyle Brown Date: Sat, 23 Feb 2019 20:03:42 -0800 Subject: [PATCH] Resolved many things --- docs/flashing.md | 4 ++-- docs/rgb.md | 2 -- user_keymaps/kdb424/nyquist_converter.py | 10 +++++----- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/docs/flashing.md b/docs/flashing.md index 121f5f5..4b9c971 100644 --- a/docs/flashing.md +++ b/docs/flashing.md @@ -5,7 +5,7 @@ as appropriate (see [Adafruit's documentation](https://learn.adafruit.com/welcome-to-circuitpython/installing-circuitpython), though it doesn't cover all CircuitPython boards - you may need to glance around the CircuitPython source or ask on Discord). We primarily target CircuitPython -4.0-alpha1 to 4.0-alpha3. You'll only need +4.0-alpha1 to 4.0-alpha2. You'll only need to flash CircuitPython once (unless we update our baseline supported version). After CircuitPython has been flashed, a `CIRCUITPY` drive should show up on your @@ -34,7 +34,7 @@ Please join us on the Discord/Matrix server and we can help you out ## Linux/BSD Check to see if your drive may have mounted elsewhere with a gui tool. Most will give you the directory in the GUI. -If it's not mounted, you can read up on how to mount a drive manually here. https://wiki.archlinux.org/index.php/File_systems#Mount_a_file_system +If it's not mounted, you can read up on how to mount a drive manually [here](https://wiki.archlinux.org/index.php/File_systems#Mount_a_file_system) It would look something like this diff --git a/docs/rgb.md b/docs/rgb.md index 10dbcc3..382b5c5 100644 --- a/docs/rgb.md +++ b/docs/rgb.md @@ -24,8 +24,6 @@ Then you should be able to use the keycodes below to change the RGB lighting to KMK uses [Hue, Saturation, and Value](https://en.wikipedia.org/wiki/HSL_and_HSV) to select colors rather than RGB. The color wheel below demonstrates how this works. -HSV Color Wheel - Changing the **Hue** cycles around the circle. Changing the **Saturation** moves between the inner and outer sections of the wheel, affecting the intensity of the color. Changing the **Value** sets the overall brightness. diff --git a/user_keymaps/kdb424/nyquist_converter.py b/user_keymaps/kdb424/nyquist_converter.py index 3d4e760..972942d 100644 --- a/user_keymaps/kdb424/nyquist_converter.py +++ b/user_keymaps/kdb424/nyquist_converter.py @@ -231,11 +231,11 @@ keyboard.keymap = [ ], [ # r3 - [KC.GESC, KC.RGB_HUI, KC.RGB_HUD, KC.RGB_SAI, KC.RGB_SAD, KC.RGB_VAI, KC.RGB_VAD, _______, KC.F10, KC.F11, KC.F12, KC.DEL], - [KC.RGB_M_P, _______, _______, _______, _______, _______, _______, _______, KC.F7, KC.F8, KC.F9, SHFT_INS], - [KC.RGB_M_K, _______, _______, _______, _______, _______, _______, _______, KC.F4, KC.F5, KC.F6, KC.VOLU], - [KC.RGB_M_BR, _______, _______, _______, _______, _______, _______, _______, KC.F1, KC.F2, KC.F4, KC.VOLD], - [BASE, GAMING, _______, _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX], + [KC.GESC, KC.RGB_M_P, KC.RGB_M_K, KC.RGB_M_B, KC.RGB_M_BR, _______, _______, _______, KC.F10, KC.F11, KC.F12, KC.DEL], + [_______, KC.RGB_HUD, KC.RGB_HUI, _______, _______, _______, _______, _______, KC.F7, KC.F8, KC.F9, SHFT_INS], + [_______, KC.RGB_SAD, KC.RGB_SAI, _______, _______, _______, _______, _______, KC.F4, KC.F5, KC.F6, KC.VOLU], + [_______, KC.RGB_VAD, KC.RGB_VAI, _______, _______, _______, _______, _______, KC.F1, KC.F2, KC.F4, KC.VOLD], + [BASE, GAMING, _______, _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX], ], ]