diff options
author | QMK Bot <hello@qmk.fm> | 2021-03-05 18:43:45 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-03-05 18:43:45 +0000 |
commit | 3acb3a09fc0b37eb25d95b77a14298695538d9ff (patch) | |
tree | a89dc53864fa7f40b01d3aae561f3c576ca484b8 /keyboards/boston/boston.c | |
parent | 7ca96044221741c462b9935e6affac442246c113 (diff) | |
parent | 07fce7ba13ee2d166fe2f18ef8d9ef622eace446 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/boston/boston.c')
-rw-r--r-- | keyboards/boston/boston.c | 24 |
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(); +} |