qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

kastenwagen1840.c (1863B)


      1 /* Copyright 2022 W. Alex Ronke, a.k.a. NoPunIn10Did (w.alex.ronke@gmail.com)
      2  *
      3  * This program is free software: you can redistribute it and/or modify
      4  * it under the terms of the GNU General Public License as published by
      5  * the Free Software Foundation, either version 2 of the License, or
      6  * (at your option) any later version.
      7  *
      8  * This program is distributed in the hope that it will be useful,
      9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     11  * GNU General Public License for more details.
     12  *
     13  * You should have received a copy of the GNU General Public License
     14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     15  */
     16 
     17 #include "quantum.h"
     18 
     19 #ifndef LAYER_LED_DISABLE
     20 
     21 void keyboard_pre_init_kb(void) {
     22     gpio_set_pin_output(LED_INDICATOR_TOP);
     23     gpio_set_pin_output(LED_INDICATOR_MID);
     24     gpio_set_pin_output(LED_INDICATOR_BOT);
     25     keyboard_pre_init_user();
     26 }
     27 
     28 __attribute__((weak)) layer_state_t layer_state_set_user(layer_state_t state) {
     29     gpio_write_pin_high(LED_INDICATOR_TOP);
     30     gpio_write_pin_high(LED_INDICATOR_MID);
     31     gpio_write_pin_high(LED_INDICATOR_BOT);
     32 
     33     switch(get_highest_layer(state) % 4) {
     34     case 1:
     35         gpio_write_pin_low(LED_INDICATOR_TOP);
     36         gpio_write_pin_low(LED_INDICATOR_MID);
     37         break;
     38     case 2:
     39         gpio_write_pin_low(LED_INDICATOR_TOP);
     40         gpio_write_pin_low(LED_INDICATOR_BOT);
     41         break;
     42     case 3:
     43         gpio_write_pin_low(LED_INDICATOR_MID);
     44         gpio_write_pin_low(LED_INDICATOR_BOT);
     45         break;
     46     }
     47     return state;
     48 }
     49 
     50 #endif
     51 
     52 bool encoder_update_kb(uint8_t index, bool clockwise) {
     53    if (!encoder_update_user(index, clockwise)) { return false; }
     54    if (clockwise) {
     55        tap_code(KC_PGUP);
     56    } else {
     57        tap_code(KC_PGUP);
     58    }
     59    return true;
     60 };