summaryrefslogtreecommitdiff
path: root/keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md
diff options
context:
space:
mode:
authorJames <36494838+urbanvanilla@users.noreply.github.com>2021-01-14 00:52:11 -0500
committerGitHub <noreply@github.com>2021-01-13 21:52:11 -0800
commit214528b1e77728adc2094752c84b9b0d919da86d (patch)
tree0905aaf7e7ab4ca1ed47f696a7b4cc729541e373 /keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md
parent523c8315a22772fc3e605e21b14821b148c48a09 (diff)
[Keymap] urbanvanilla keymap for drop/alt (#11365)
* added urbanvanilla keymap Urbanvanilla's keymap for massdrop/alt keyboard adds in an idle timer to turn off RGB after set amount of time. poor unsuccessful attempt at replicating a velocikey like functionality. Grave escape is enabled on ESC. * Update readme.md * updating documentation * Create readme.md * restoring default documentation * update with review changes implemented removed unnecessary lines and files. increased wait_us() parameter to 40 as was still getting chatter at 20. removed some code for the terrible rudimentary attempt at velocikey for rgb matrix * Update matrix.c * Revert "Merge pull request #3 from urbanvanilla/dev_branch" This reverts commit deb55d797a4629965c990ab507251489c578573d, reversing changes made to ba8817356f6c0881cf7f3214f7f1ebd31febceb5. * Update keymap.c * added urbanvanilla keymap Urbanvanilla's keymap for massdrop/alt keyboard adds in an idle timer to turn off RGB after set amount of time. poor unsuccessful attempt at replicating a velocikey like functionality. Grave escape is enabled on ESC. * Update readme.md * updating documentation * Create readme.md * restoring default documentation * update with review changes implemented removed unnecessary lines and files. increased wait_us() parameter to 40 as was still getting chatter at 20. removed some code for the terrible rudimentary attempt at velocikey for rgb matrix * Update matrix.c * Revert "Merge pull request #3 from urbanvanilla/dev_branch" This reverts commit deb55d797a4629965c990ab507251489c578573d, reversing changes made to ba8817356f6c0881cf7f3214f7f1ebd31febceb5. * Delete matrix.c * Update keyboards/massdrop/alt/keymaps/urbanvanilla/config.h Co-authored-by: Joel Challis <git@zvecr.com> * Update keymap.c * Update keymap.c * Update keyboards/massdrop/alt/keymaps/urbanvanilla/keymap.c Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md')
-rw-r--r--keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md48
1 files changed, 48 insertions, 0 deletions
diff --git a/keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md b/keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md
new file mode 100644
index 0000000000..116ccc4eff
--- /dev/null
+++ b/keyboards/massdrop/alt/keymaps/urbanvanilla/readme.md
@@ -0,0 +1,48 @@
+
+# Custom mapping for the Drop Alt Keyboard.
+
+A really simple set of changes/fixes
+
+# Features and changes:
+
+## *ESC is now Grave Escape.*
+Changes KC_ESC for grave escape - Escape key is also `/~ when used with the modifier key.
+
+## *RGB timer switch off*
+
+There is a timer that turns off RGB lighting after a set time. This is defined by
+
+ #define IDLE_TIMER_DURATION 20000 //how many milliseconds before RGB turns off
+
+## *Keyboard chatter fix*
+
+I have left the debounce settings and instead changed
+
+ wait_us(1); //Delay for output
+to 40 instead of 1 which works for other keyboards as I was getting lots of keyboard chatter on all keys previously. 20 seemed to still let key chatter go through. Seems to be working well since.
+
+
+
+
+
+
+# ALT
+
+![ALT](https://massdrop-s3.imgix.net/product-images/alt-keyboard/FP/WNxwR19gTua3nxiiQWP3_AI7B3311%20copy%20page.jpg?auto=format&fm=jpg&fit=max&w=700&h=467&dpr=1&q=80)
+
+The Massdrop ALT is a 65% mechanical keyboard featuring dual USB-C connectors, an integrated Hi-Speed USB 2.0 hub, and fully customizable RGB backlighting and underlighting.
+
+Keyboard Maintainer: [Massdrop](https://github.com/massdrop)
+Hardware Supported: Massdrop, Inc. ALT PCBs utilizing Microchip's ATSAMD51J18A MCU and USB2422 2-Port USB 2.0 Hi-Speed Hub Controller, and ISSI's IS31FL3733 LED Drivers.
+Hardware Availability: [Massdrop ALT Mechanical Keyboard](https://www.massdrop.com/buy/massdrop-alt-mechanical-keyboard)
+
+Make example for this keyboard (after setting up your build environment):
+
+ make massdrop/alt:default
+
+For information on flashing this keyboard, visit the following links:
+
+[Massdrop Loader Releases](https://github.com/Massdrop/mdloader/releases)
+[Massdrop Loader Repository and Instructions](https://github.com/Massdrop/mdloader)
+
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).