From e2b17798ad32401d5ebc608cc6959b54f29f115c Mon Sep 17 00:00:00 2001 From: Maria <81305596+toril940@users.noreply.github.com> Date: Sun, 15 Oct 2023 18:19:22 +0100 Subject: [PATCH 1/4] Update keyboards/mariorion_v25/readme.md Co-authored-by: Duncan Sutherland --- keyboards/mariorion_v25/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/keyboards/mariorion_v25/readme.md b/keyboards/mariorion_v25/readme.md index 4d834ce3486..c17a515385b 100644 --- a/keyboards/mariorion_v25/readme.md +++ b/keyboards/mariorion_v25/readme.md @@ -1,6 +1,7 @@ # mariorion_v25 -![mariorion_v25](https://imgur.com/a/FINDY2V) +![mariorion_v25_1](https://i.imgur.com/3OrUK2ph.jpeg) +![mariorion_v25_2](https://i.imgur.com/OvMBHOlh.jpeg) *A short description of the keyboard/project* From 4a2fa7e7cb30ad2262b77196217992bd97f832e3 Mon Sep 17 00:00:00 2001 From: Maria <81305596+toril940@users.noreply.github.com> Date: Sun, 15 Oct 2023 18:19:32 +0100 Subject: [PATCH 2/4] Revert keyboards/gray_studio/think65/solder/solder.c Co-authored-by: Duncan Sutherland --- keyboards/gray_studio/think65/solder/solder.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/keyboards/gray_studio/think65/solder/solder.c b/keyboards/gray_studio/think65/solder/solder.c index 8cfc6a292f3..cfa9e43764d 100644 --- a/keyboards/gray_studio/think65/solder/solder.c +++ b/keyboards/gray_studio/think65/solder/solder.c @@ -18,12 +18,7 @@ // Optional override functions below. // You can leave any or all of these undefined. // These are only required if you want to perform custom actions. -#define CAPS_LOCK_LED A5 -#define SCROLL_LOCK_LED A15 - -#define LAYER_1_PIN C8 -#define LAYER_2_PIN C7 -#define LAYER_3_PIN C6 + void matrix_init_kb(void) { // put your keyboard start-up code here From c0b54587775ae23d7f3f845099dbd2525fbac313 Mon Sep 17 00:00:00 2001 From: Maria <81305596+toril940@users.noreply.github.com> Date: Sun, 15 Oct 2023 18:19:50 +0100 Subject: [PATCH 3/4] Revert keyboards/gray_studio/think65/solder/solder.c Co-authored-by: Duncan Sutherland --- keyboards/gray_studio/think65/solder/solder.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/keyboards/gray_studio/think65/solder/solder.c b/keyboards/gray_studio/think65/solder/solder.c index cfa9e43764d..f9dd977d5cb 100644 --- a/keyboards/gray_studio/think65/solder/solder.c +++ b/keyboards/gray_studio/think65/solder/solder.c @@ -24,11 +24,7 @@ void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up - setPinOutput(A5); - setPinOutput(A15); - setPinOutput(C8); setPinOutput(C7); - setPinOutput(C6); matrix_init_user(); } From 3307f8c743a8d5cce10e252b33ff8b701ceca726 Mon Sep 17 00:00:00 2001 From: Maria <81305596+toril940@users.noreply.github.com> Date: Sun, 15 Oct 2023 18:19:59 +0100 Subject: [PATCH 4/4] Revert keyboards/gray_studio/think65/solder/solder.c Co-authored-by: Duncan Sutherland --- keyboards/gray_studio/think65/solder/solder.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/keyboards/gray_studio/think65/solder/solder.c b/keyboards/gray_studio/think65/solder/solder.c index f9dd977d5cb..c9833564246 100644 --- a/keyboards/gray_studio/think65/solder/solder.c +++ b/keyboards/gray_studio/think65/solder/solder.c @@ -30,8 +30,7 @@ void matrix_init_kb(void) { bool led_update_kb(led_t led_state) { if(led_update_user(led_state)) { - writePin(CAPS_LOCK_LED, !led_state.caps_lock); - writePin(SCROLL_LOCK_LED, !led_state.num_lock); + writePin(C7, !led_state.caps_lock); } return true; }