logo

qmk_firmware

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

hotdog_pad.c (311B)


  1. // Copyright 2024 Stephen Onnen (@onnenon)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "quantum.h"
  4. void keyboard_pre_init_kb(void) {
  5. // Enable the power pin for the Xiao Seeed rp2040 onboard NeoPixel
  6. gpio_set_pin_output(GP11);
  7. gpio_write_pin_high(GP11);
  8. keyboard_pre_init_user();
  9. }