diff options
| author | Seebs <seebs@seebs.net> | 2017-11-23 15:34:50 -0600 |
|---|---|---|
| committer | Seebs <seebs@seebs.net> | 2017-11-23 15:37:39 -0600 |
| commit | 534cd9d45e66b4750d7790fa7230b2108ab3966d (patch) | |
| tree | f960b986ea73572b02dd56c020c5f80c72f48095 | |
| parent | 2f5bb2506a6c3079ef58f2576ff48e42f0876202 (diff) | |
| download | qmk_firmware-534cd9d45e66b4750d7790fa7230b2108ab3966d.tar.gz qmk_firmware-534cd9d45e66b4750d7790fa7230b2108ab3966d.zip | |
Make brightness easier to change
Don't make the #defines unconditional, make them
optional so users can override them with per-keymap
settings more easily.
| -rw-r--r-- | keyboards/ergodox_ez/config.h | 5 | ||||
| -rw-r--r-- | keyboards/ergodox_ez/ergodox_ez.c | 2 | ||||
| -rw-r--r-- | keyboards/ergodox_ez/ergodox_ez.h | 4 |
3 files changed, 10 insertions, 1 deletions
diff --git a/keyboards/ergodox_ez/config.h b/keyboards/ergodox_ez/config.h index bf3ebceb1..81f749dfa 100644 --- a/keyboards/ergodox_ez/config.h +++ b/keyboards/ergodox_ez/config.h | |||
| @@ -61,8 +61,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 61 | /* number of backlight levels */ | 61 | /* number of backlight levels */ |
| 62 | #define BACKLIGHT_LEVELS 3 | 62 | #define BACKLIGHT_LEVELS 3 |
| 63 | 63 | ||
| 64 | #ifndef LED_BRIGHTNESS_LO | ||
| 64 | #define LED_BRIGHTNESS_LO 15 | 65 | #define LED_BRIGHTNESS_LO 15 |
| 66 | #endif | ||
| 67 | #ifndef LED_BRIGHTNESS_HI | ||
| 65 | #define LED_BRIGHTNESS_HI 255 | 68 | #define LED_BRIGHTNESS_HI 255 |
| 69 | #endif | ||
| 70 | #define LED_BRIGHTNESS_DEFAULT (LED_BRIGHTNESS_HI) | ||
| 66 | 71 | ||
| 67 | /* ws2812 RGB LED */ | 72 | /* ws2812 RGB LED */ |
| 68 | #define RGB_DI_PIN D7 | 73 | #define RGB_DI_PIN D7 |
diff --git a/keyboards/ergodox_ez/ergodox_ez.c b/keyboards/ergodox_ez/ergodox_ez.c index 8ada551ae..1b643cbef 100644 --- a/keyboards/ergodox_ez/ergodox_ez.c +++ b/keyboards/ergodox_ez/ergodox_ez.c | |||
| @@ -54,7 +54,7 @@ void matrix_init_kb(void) { | |||
| 54 | void ergodox_blink_all_leds(void) | 54 | void ergodox_blink_all_leds(void) |
| 55 | { | 55 | { |
| 56 | ergodox_led_all_off(); | 56 | ergodox_led_all_off(); |
| 57 | ergodox_led_all_set(LED_BRIGHTNESS_HI); | 57 | ergodox_led_all_set(LED_BRIGHTNESS_DEFAULT); |
| 58 | ergodox_right_led_1_on(); | 58 | ergodox_right_led_1_on(); |
| 59 | _delay_ms(50); | 59 | _delay_ms(50); |
| 60 | ergodox_right_led_2_on(); | 60 | ergodox_right_led_2_on(); |
diff --git a/keyboards/ergodox_ez/ergodox_ez.h b/keyboards/ergodox_ez/ergodox_ez.h index a6890a70c..4433dbe6d 100644 --- a/keyboards/ergodox_ez/ergodox_ez.h +++ b/keyboards/ergodox_ez/ergodox_ez.h | |||
| @@ -30,8 +30,12 @@ void ergodox_blink_all_leds(void); | |||
| 30 | uint8_t init_mcp23018(void); | 30 | uint8_t init_mcp23018(void); |
| 31 | uint8_t ergodox_left_leds_update(void); | 31 | uint8_t ergodox_left_leds_update(void); |
| 32 | 32 | ||
| 33 | #ifndef LED_BRIGHTNESS_LO | ||
| 33 | #define LED_BRIGHTNESS_LO 15 | 34 | #define LED_BRIGHTNESS_LO 15 |
| 35 | #endif | ||
| 36 | #ifndef LED_BRIGHTNESS_LO | ||
| 34 | #define LED_BRIGHTNESS_HI 255 | 37 | #define LED_BRIGHTNESS_HI 255 |
| 38 | #endif | ||
| 35 | 39 | ||
| 36 | 40 | ||
| 37 | inline void ergodox_board_led_on(void) { DDRD |= (1<<6); PORTD |= (1<<6); } | 41 | inline void ergodox_board_led_on(void) { DDRD |= (1<<6); PORTD |= (1<<6); } |
