From 52b53ccf3821c0e2855acb424f78342a0c95a400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20A=2E=20Volpato?= Date: Mon, 27 Dec 2021 07:17:12 -0300 Subject: Add 'capslock backlight' feature to Iron180 (#15462) * Add 'capslock backlight' capability to Iron180 * Update readme * Revers CAPSLOCK_BACKLIGHT back to default --- keyboards/iron180/iron180.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'keyboards/iron180/iron180.c') diff --git a/keyboards/iron180/iron180.c b/keyboards/iron180/iron180.c index 236f8176f6..546ff7fc8f 100644 --- a/keyboards/iron180/iron180.c +++ b/keyboards/iron180/iron180.c @@ -1,5 +1,5 @@ /* -Copyright 2020 Álvaro "Gondolindrim" Volpato +Copyright 2021 Álvaro "Gondolindrim" Volpato This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,3 +16,18 @@ along with this program. If not, see . */ #include "iron180.h" + +#ifdef CAPSLOCK_BACKLIGHT +bool led_update_kb(led_t led_state) { + bool res = led_update_user(led_state); + if (!led_state.caps_lock){ + if (is_backlight_breathing()) breathing_disable(); + backlight_disable(); + } + else { + if (is_backlight_breathing()) breathing_enable(); + backlight_enable(); + } + return res; +} +#endif -- cgit v1.2.3