mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-21 16:06:35 +06:00
fe50774cb4
* [Keyboard] Add pimoroni/keybow2040 * [Keyboard] Update pimoroni/keybow2040 Co-Authored-By: Less/Rikki <86894501+lesshonor@users.noreply.github.com> Co-Authored-By: Joel Challis <git@zvecr.com> Co-Authored-By: Sandy Macdonald <1325593+sandyjmacdonald@users.noreply.github.com> --------- Co-authored-by: Tony Finch <dot@dotat.at> Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Sandy Macdonald <1325593+sandyjmacdonald@users.noreply.github.com>
18 lines
377 B
C
18 lines
377 B
C
// Copyright 2024 QMK Collaborators (@qmk)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
|
|
|
#define IS31FL3731_I2C_ADDRESS_1 IS31FL3731_I2C_ADDRESS_GND
|
|
|
|
#define I2C_DRIVER I2CD0
|
|
#define I2C1_SDA_PIN GP4
|
|
#define I2C1_SCL_PIN GP5
|
|
#define I2C1_CLOCK_SPEED 100000
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
#define RGB_MATRIX_SLEEP
|
|
#endif
|