mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-05 17:30:56 +00:00
be7786bfc6
* Add Hotdog Pad * remove encoder_map feature * Add rules.mk * move rules.mk into keymap * Update keyboards/onnenon/hotdog_pad/keyboard.json Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/onnenon/hotdog_pad/keyboard.json Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/onnenon/hotdog_pad/keymaps/default/keymap.c Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/onnenon/hotdog_pad/keymaps/default/keymap.c Co-authored-by: Joel Challis <git@zvecr.com> * add hotdog_pad.c * fix reversed encoder pins * Update keyboards/onnenon/hotdog_pad/hotdog_pad.c Co-authored-by: Joel Challis <git@zvecr.com> --------- Co-authored-by: Joel Challis <git@zvecr.com>
13 lines
311 B
C
13 lines
311 B
C
// Copyright 2024 Stephen Onnen (@onnenon)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "quantum.h"
|
|
|
|
void keyboard_pre_init_kb(void) {
|
|
// Enable the power pin for the Xiao Seeed rp2040 onboard NeoPixel
|
|
gpio_set_pin_output(GP11);
|
|
gpio_write_pin_high(GP11);
|
|
|
|
keyboard_pre_init_user();
|
|
}
|