From 42180e25a3a3e660d12e154b6e61f6030de0e5c9 Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Sat, 5 May 2018 16:07:20 -0500 Subject: [PATCH] change Max7219 coordinates are in traditional (X,Y) format --- Marlin/Max7219_Debug_LEDs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/Max7219_Debug_LEDs.cpp b/Marlin/Max7219_Debug_LEDs.cpp index a0800c4fe..83b285a08 100644 --- a/Marlin/Max7219_Debug_LEDs.cpp +++ b/Marlin/Max7219_Debug_LEDs.cpp @@ -104,9 +104,9 @@ void Max7219_LED_Set(const uint8_t col, const uint8_t row, const bool on) { SERIAL_ECHOLNPGM(")"); return; } - if (TEST(LEDs[row], col) == on) return; // if LED is already on/off, leave alone - if (on) SBI(LEDs[row], col); else CBI(LEDs[row], col); - Max7219(8 - row, LEDs[row]); + if (TEST(LEDs[col], row) == on) return; // if LED is already on/off, leave alone + if (on) SBI(LEDs[col], row); else CBI(LEDs[col], row); + Max7219(8 - col, LEDs[col]); } void Max7219_LED_On(const uint8_t col, const uint8_t row) {