summaryrefslogtreecommitdiff
path: root/keyboards/boston/boston.c
diff options
context:
space:
mode:
authorbluepylons <jwang757@bu.edu>2021-03-05 13:43:09 -0500
committerGitHub <noreply@github.com>2021-03-05 10:43:09 -0800
commit07fce7ba13ee2d166fe2f18ef8d9ef622eace446 (patch)
tree285e604494885a35def17262e762caf5d076dcac /keyboards/boston/boston.c
parent52d8cbf092574974d50adfb8fd3b3b9f88074b18 (diff)
[Keyboard] add Boston keyboard (#11273)
* Added boston keyboard * Added Boston keyboard * Changed some keycodes, added layers, added encoder layer change, added RGB layer indicator * Cleaned up whitespace * Update config.h Cleaned up whitespace * Cleaned up whitespace * Added keyboard_post_init_kb code for RGBLEDs so that they start on a defined color * Modified layout so that split backspace right is at a more intuitive location for configurator * Cleaned up whitespace, changed some labels * Modified keymap to accommodate revised layout in boston.h * Removed "on port C6" from Line 20 (committed suggestion) * Removed "Encoder Enable" from Line 8 (committed suggestion) * Removed empty #define DESCRIPTION as suggested * Implemented lock LED changes as suggested by drashna * Implemented lock LED changes as suggested by Drashna, changed WS2812 driver byte order * Updated HSV color codes to reflect WS2812 byte order change * Implemented suggestion from noroadsleft * Implemented suggestion from noroadsleft * Updated readm.md per suggestions from noroadsleft * Update keyboards/boston/readme.md per noroadsleft's suggestion * Removed empty layers from default keymap * Stripped empty layers and much code from default keymap ; moved to RGB Light Layers keycap
Diffstat (limited to 'keyboards/boston/boston.c')
-rw-r--r--keyboards/boston/boston.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/boston/boston.c b/keyboards/boston/boston.c
new file mode 100644
index 0000000000..2bcac21cba
--- /dev/null
+++ b/keyboards/boston/boston.c
@@ -0,0 +1,24 @@
+/* Copyright 2020 Pylon
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "boston.h"
+
+void keyboard_post_init_kb(void) {
+ /* this is to set an LED color at startup so it's not some random color*/
+ rgblight_enable_noeeprom();
+ rgblight_sethsv_noeeprom(0, 0, 128);
+ keyboard_post_init_user();
+}