logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

the50.c (216B)


  1. #include "the50.h"
  2. #define THE50_LED_PIN B7
  3. void the50_led_on(void) {
  4. gpio_set_pin_output(THE50_LED_PIN);
  5. gpio_write_pin_low(THE50_LED_PIN);
  6. }
  7. void the50_led_off(void) {
  8. gpio_set_pin_input(THE50_LED_PIN);
  9. }