From c3a105186dacdfbd84d5e4c0e75d10643debac6d Mon Sep 17 00:00:00 2001 From: esenapaj Date: Wed, 2 Nov 2016 00:31:50 +0900 Subject: [PATCH] Follow-up the PR #5133 (M355 Case light) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ・Add CASE_LIGHT_PIN into pinsDebug.h --- Marlin/pinsDebug.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Marlin/pinsDebug.h b/Marlin/pinsDebug.h index d2a2e7e4d0..9fb885f096 100644 --- a/Marlin/pinsDebug.h +++ b/Marlin/pinsDebug.h @@ -360,6 +360,9 @@ static bool report_pin_name(int8_t pin, bool &pin_is_analog) { #if PIN_EXISTS(LED) PIN_SAY(LED_PIN); #endif + #if PIN_EXISTS(CASE_LIGHT) + PIN_SAY(CASE_LIGHT_PIN); + #endif #if PIN_EXISTS(MAIN_VOLTAGE_MEASURE) PIN_SAY(MAIN_VOLTAGE_MEASURE_PIN); #endif