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