2023-10-12 07:26:20 +02:00
|
|
|
// Copyright 2021-2023 alin m elena (@alinelena)
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2022-01-30 20:13:08 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-10-12 07:26:20 +02:00
|
|
|
#define LED_RSE_PIN B13
|
|
|
|
#define LED_LWR_PIN B12
|
2022-06-11 20:18:45 +02:00
|
|
|
|
2022-01-30 20:13:08 +01:00
|
|
|
#ifdef OLED_ENABLE
|
2023-10-12 07:26:20 +02:00
|
|
|
# define I2C1_SCL_PIN B9
|
|
|
|
# define I2C1_SDA_PIN B8
|
|
|
|
# define OLED_BRIGHTNESS 128
|
|
|
|
# define OLED_FONT_H "keyboards/mlego/m65/lib/glcdfont.c"
|
2022-01-30 20:13:08 +01:00
|
|
|
#endif
|